Java税务计算器[已关闭]

9rygscc1  于 2023-03-06  发布在  Java
关注(0)|答案(2)|浏览(144)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

昨天关门了。
Improve this question
我带回家的挑战是写一个计算所得税的程序。作业必须分步骤完成,每完成一步我就会得到积分。

第2步(3分)

根据状态标识扣减额:(1)单身= $12,000或(2)已婚= $24,000。如果未输入为1或2,则将状态设置为1。计算应纳税收入(AGI -扣减)。如果为负数,则将应纳税收入设置为零。输出扣减和应纳税收入。提交以进行评级,以确认通过五项测试。

  1. import java.util.Scanner;
  2. public class LabProgram {
  3. public static void main(String[] args) {
  4. Scanner scnr = new Scanner(System.in);
  5. int wages = scnr.nextInt();
  6. int interest = scnr.nextInt();
  7. int unemployment = scnr.nextInt();
  8. int status = scnr.nextInt();
  9. int withheld = scnr.nextInt();
  10. int AGI = wages + interest + unemployment;
  11. int singleDeduct = 12000;
  12. int marriedDeduct = 24000;
  13. int taxableIncome = 0;
  14. if (AGI > 120000)
  15. {
  16. System.out.printf("AGI: $%,2d\n", AGI);
  17. System.out.println("Error: Income too high to use this form");
  18. }
  19. else if (status == 1)
  20. {
  21. taxableIncome = AGI - singleDeduct;
  22. System.out.printf("AGI: $%,2d\n", AGI);
  23. System.out.printf("Deduction: $%,2d\n", singleDeduct);
  24. System.out.printf("Taxable income: $%,2d", taxableIncome);
  25. }
  26. else if (status == 2)
  27. {
  28. taxableIncome = 0;
  29. System.out.printf("Deduction: $%,2d\n", marriedDeduct);
  30. System.out.printf("Taxable income: $%,d", taxableIncome);
  31. }
  32. }
  33. }

我理解这个问题的方式是,我已经为单身扣除额12000和已婚扣除额24000创建了变量。
我感到困惑的是设置“单身”或“已婚”的状态
我的逻辑是:

  1. If single is equal to one:
  2. deductions = 12000;
  3. taxableIncome = AGI - deductions;
  4. Else If married is equal to two:
  5. deductions = 24000;
  6. taxableIncome = 0; "since it is negative when I input the numbers to my calculator"

完成这一步后,我应该有5分,但目前有4分,这意味着我还没有完全满足步骤2。

vqlkdk9b

vqlkdk9b1#

几点建议:
1.你只有在单身时才能扣除扣除。
1.就像肖恩在他的回答中说的,如果不等于1或2,你就不会认为自己是单身。
下面是一种同时实现这两种功能的方法

  1. // set deduction to 24000 for married
  2. // otherwise 12000 (assume single)
  3. int deduction = status == 2 ? 24000 : 12000;
  4. // if deduction is higher than AGI
  5. // set taxable income to 0
  6. taxableIncome = deduction > AGI ? 0 : AGI - deduction;

这使用了三元运算符,本质上相当于说

  1. int deduction;
  2. if (status == 2)
  3. deduction = 24000;
  4. else
  5. deduction = 12000;
  6. if (deduction > AGI)
  7. taxableIncome = 0;
  8. else
  9. taxableIncome = AGI - deduction;

除了当AGI〉120000时的错误消息之外,我会等到计算完成后再打印任何内容,这将有助于减少打印语句的数量,当AGI〉120000时(在错误消息之后),您也可以调用System.exit(0);来立即停止程序。

展开查看全部
vdzxcuhz

vdzxcuhz2#

看起来你错过了这一步?
如果未输入1或2,则将状态设置为1。
试试这个?

  1. if (AGI > 120000) {
  2. System.out.printf("AGI: $%,2d\n", AGI);
  3. System.out.println("Error: Income too high to use this form");
  4. }
  5. else if (status == 2) {
  6. taxableIncome = 0;
  7. System.out.printf("Deduction: $%,2d\n", marriedDeduct);
  8. System.out.printf("Taxable income: $%,d", taxableIncome);
  9. }
  10. // will default to status 1
  11. else {
  12. taxableIncome = AGI - singleDeduct;
  13. System.out.printf("AGI: $%,2d\n", AGI);
  14. System.out.printf("Deduction: $%,2d\n", singleDeduct);
  15. System.out.printf("Taxable income: $%,2d", taxableIncome);
  16. }
展开查看全部

相关问题