用户必须输入购买总金额和年龄,然后计算最终付款。
如果总金额达到或超过 100 美元,可享受总价 20% 的折扣。如果年龄为 65 岁或以上,则总价可享受 10% 的折扣。
double discount1 = 0.10;
double discount2 = 0.20;
double totalPrice = 0.0;
double finalPrice = 0.0;
System.out.print("Enter total amount: ");
double purchase = input.nextDouble();
System.out.print("Enter age: ");
int age = input.nextInt();
if (purchase >= 100) {
totalPrice = purchase * discount2;
finalPrice = purchase - totalPrice;
System.out.print("The final amount is $" + finalPrice);
}
else if (purchase < 100 && age < 65) {
System.out.println("The final amount is $" + purchase);
}
else if (age >= 65) {
totalPrice = purchase * discount1;
finalPrice = purchase - totalPrice;
System.out.print("The final amount is $" + finalPrice);
}
用户输入 200 作为总金额,输入 75 作为年龄。输出应该是 140.00 美元。但是,我收到的输出为 160.00 美元。
浮云间
交互式爱情
潇潇雨雨
相关分类