我试图接受用户输入的两个人的小时工资和他们每年加班的小时数。

该程序将使用我研究过的算法,告诉人们他们每年的收入和所支付的税额,这取决于他们的收入。

这一切都很好,花花公子。但是,我现在想做的是在程序末尾添加一行,说明谁在缴纳更多税款。这可以通过方法whoPaysMoreTaxes完成,但是我不知道该方法中要包括什么。我知道我需要一个简单的if / else if / else语句来完成工作,但是我不知道如何存储人1的税金和人2的税金并进行比较。我相信输出应该如下。数字22、100、58和260是用户输入的:

Person 1's hourly wage: 22
Person 1's overtime hours for the year: 100
You will make $45540 this year
And you will pay $9108 in taxes
Person 2's hourly wage: 58
Person 2's overtime hours for the year: 260
You will make $133980 this year
And you will pay $40194 in taxes.
Person 2 is paying more taxes.


我遇到的问题是找到一种方法来产生最后一条线,说谁在缴纳更多税款。

public class conditionalsAndReturn
{
   public static void main(String[] args)
   {
       Scanner console = new Scanner(System.in);
       taxes(console, 1);
       taxes(console, 2);
   }
   public static void taxes(Scanner console, int personNum)
   {
      System.out.print("Person " + personNum + "'s hourly wage: ");
      int wage = console.nextInt();
      System.out.print("Person " + personNum + "'s overtime hours for the year: ");
      double totalOvertimeHours = console.nextInt();
      int salary = annualSalary(wage, totalOvertimeHours);
      System.out.println("You will make $" + salary + " this year");
      System.out.println("And you will pay $" + taxation(salary) + " in taxes");
      System.out.println();
   }

   public static int annualSalary(int wage, double totalOvertimeHours)
   {
      double workHoursPerWeek = 40 + totalOvertimeHours / 48;
      return (int)(weeklyPay(wage, workHoursPerWeek) * 48);
    }

   public static double weeklyPay(int wage, double workHoursPerWeek)
   {
       if (workHoursPerWeek > 40)
       {
           return (wage * 40) + ((wage + wage / 2.0) * (workHoursPerWeek - 40));
       }
       else
       {
          return wage * workHoursPerWeek;
       }
    }

   public static int taxation(int salary)
   {
       if (salary < 20000)
       {
           return 0;
       }
       else if (salary > 100000)
       {
           return salary * 3 / 10;
       }
       else
       {
           return salary * 2 / 10;
       }
   }

  public static String whoPaysMoreTaxes(
}

最佳答案

拥有一个班级人员(或更好的员工)的OOP规范编码将具有以下字段:personNum,三个工资/薪水变量中的一个或多个,税收。添加名称等(如果需要)。

现在,您可以使用这些类的实例来存储累积的数据,并将对象与compareTo进行比较。

10-07 20:55