创建一个包含两个重载方法的奖励计算器程序 - 一个接受表示为双倍的工资和奖金,另一个接受薪水作为双倍,奖金作为int。
我编写了程序,我可以获得奖金作为工作的int,但他们两个都不会工作
namespace BonusCalculation
{
class Bonus
{
static void Main(string[] args)
{
double salary;
int bonus;
double bonusPercent;
WriteLine("What is your salary?");
salary = Convert.ToDouble(ReadLine());
WriteLine("What is your bonus?");
string bonusString = Console.ReadLine();
if (int.TryParse(bonusString, out bonus))
{ CalcBonus(salary, bonus); }
else if((double.TryParse(bonusString, out bonusPercent)))
{ CalcBonus(salary, bonusPercent); }
WriteLine( "Your new salary is {0:c2}", CalcBonus(salary,bonus));
}
static double CalcBonus(double s,double b)
{
s = (s * b) + s;
return s;
}
static double CalcBonus(double s, int b)
{
s = s + b;
return s;
}
}
}
当我以双倍作为奖励运行程序时,它不会进行数学计算。感谢任何帮助。
答案 0 :(得分:0)
问题在于:
if (int.TryParse(bonusString, out bonus))
{ CalcBonus(salary, bonus); }
else if((double.TryParse(bonusString, out bonusPercent)))
{ CalcBonus(salary, bonusPercent); }
WriteLine( "Your new salary is {0:c2}", CalcBonus(salary,bonus));
如果bonusString
不是有效整数,则永远不会设置bonus
,并且CalcBonus
中WriteLine
的最后一次调用使用0
作为奖励值。
而不是尝试推断奖金类型,让用户指定他们输入的是百分比还是值,并且只进行一次数学计算,而不是再次进行WriteLine
调用。
答案 1 :(得分:0)
public partial class Form1 : Form
{
// Constant field for the contribution rate
private const decimal CONTRIB_RATE = 0.05m;
public Form1()
{
InitializeComponent();
}
// The InputIsValid method converts the user input and stores
// it in the arguments (passed by reference). If the conversion
// is successful, the method returns true. Otherwise it returns
// false.
private bool InputIsValid(ref decimal pay, ref decimal bonus)
{
// Flag variable to indicate whether the input is good
bool inputGood = false;
// Try to convert both inputs to decimal.
if (decimal.TryParse(grossPayTextBox.Text, out pay))
{
if (decimal.TryParse(bonusTextBox.Text, out bonus))
{
// Both inputs are good.
inputGood = true;
}
else
{
// Display an error message for the bonus.
MessageBox.Show("Bonus amount is invalid.");
}
}
else
{
// Display an error message for gross pay.
MessageBox.Show("Gross pay is invalid.");
}
// Return the result.
return inputGood;
}
private void calculateButton_Click(object sender, EventArgs e)
{
// Variables for gross pay, bonus, and contributions
decimal grossPay = 0m, bonus = 0m, contributions = 0m;
if (InputIsValid(ref grossPay, ref bonus))
{
// Calculate the amount of contribution.
contributions = (grossPay + bonus) * CONTRIB_RATE;
// Display the contribution.
contributionLabel.Text = contributions.ToString("c");
}
}
private void exitButton_Click(object sender, EventArgs e)
{
// Close the form.
this.Close();
}
}
}