我采用了 for 循环,根据两个因素计算每个月的工资:50000 美元的固定工资和每月额外工作 550 美元/小时的额外工资。后一个变量显然每个月都在变化,所以我采用了scanner类来接收每个月的输入。(循环之前的所有必需参数都已充分定义)我的循环如下所示:
for(int month = 1; month <= 12; month++){
System.out.print("How many extra hours did you work this month?");
double extraHoursPerMonth = scan.nextInt();
double bonusSalary = extraHoursPerMonth*bonusSalaryPerHour;
double totalMonthlySalary = basicSalary + bonusSalary;
System.out.println("Your salary for this month is $" + totalMonthlySalary);
运行时,成功计算每个月的总工资。那么我如何继续查找年薪?
我找不到任何我可以使用的代码来总结以前计算到最终金额的月薪,我觉得我遇到了砖墙。我将不胜感激关于如何前进的任何指示、提示或建议。
万千封印
杨魅力
相关分类