试图让while循环使用符合条件的值,而不是java提供的第一个输入 所以我试图弄明白为什么while循环会取给定的第一个值,并将其用于我的等式,即使它不符合条件,也会大于250

试图让while循环使用符合条件的值,而不是java提供的第一个输入 所以我试图弄明白为什么while循环会取给定的第一个值,并将其用于我的等式,即使它不符合条件,也会大于250,java,loops,while-loop,Java,Loops,While Loop,你的过程一团糟。我已经修改了代码并加入了注释。请参阅下面的代码 Scanner kb = new Scanner(System.in); double cost; double costWithTax; double costWithSurcharge; double payment = 0; // initialized payment double changeDue; double costWithTaxAndSurcharge; double taxRate = 0.07; // 7%

你的过程一团糟。我已经修改了代码并加入了注释。请参阅下面的代码

Scanner kb = new Scanner(System.in);

double cost;
double costWithTax;
double costWithSurcharge;
double payment = 0; // initialized payment
double changeDue;
double costWithTaxAndSurcharge;
double taxRate = 0.07; // 7% tax
double surcharge = 0.10; // 10% surcharge

System.out.print("Enter transaction amount: "); // get the cost first before doing the equations
cost = kb.nextDouble();

while (cost > 250) { // check if the cost is greater than 250, since if greater than 250 it is an invalid cost (from your explanation)
    System.out.print("Input greater than $250. Pleas enter transaction amount again: ");
    cost = kb.nextDouble(); // get the cost again
}

// equations
costWithTax = (cost * taxRate) + cost; // get the cost with the tax added to it
costWithSurcharge = cost * surcharge; // change to costWithSurcharge from surcharge, so that the value of surcharge will not be overwritten, this will be the cost with surcharge
costWithTaxAndSurcharge = costWithTax + costWithSurcharge; // (#1) get the new cost, cost with tax and surcharge 

if (cost < 10) {
    cost = costWithTaxAndSurcharge; // just assign costWithTaxAndSurcharge to cost, no need to calculate again, same calculations with (#1) above
    System.out.printf("Amount due: $%.2f ", cost);
    System.out.println("");
    System.out.printf("Surcharge added is: $%.2f ", surcharge);
} else if (cost <= 250) {
    cost = costWithTax;
    System.out.printf("Amount due: $%.2f ", cost);
}

System.out.print("Enter payment amount: ");
payment = kb.nextDouble();

while (payment <= cost) {
    System.out.print("Payment is invalid. Enter payment amount agian: ");
    payment = kb.nextDouble();
}

changeDue = payment - cost;
System.out.print("Change due: " + changeDue);

kb.close();

给出的第一个值是什么?你能公布一下成本的值是什么吗?成本只是一个双倍值,它是基于用户的input@MarkSystem.out.print输入交易金额:;成本=kb.nextDouble@ThumChoonTat System.out.printEnter交易金额:;成本=kb.nextDouble;
Scanner kb = new Scanner(System.in);

double cost;
double costWithTax;
double costWithSurcharge;
double payment = 0; // initialized payment
double changeDue;
double costWithTaxAndSurcharge;
double taxRate = 0.07; // 7% tax
double surcharge = 0.10; // 10% surcharge

System.out.print("Enter transaction amount: "); // get the cost first before doing the equations
cost = kb.nextDouble();

while (cost > 250) { // check if the cost is greater than 250, since if greater than 250 it is an invalid cost (from your explanation)
    System.out.print("Input greater than $250. Pleas enter transaction amount again: ");
    cost = kb.nextDouble(); // get the cost again
}

// equations
costWithTax = (cost * taxRate) + cost; // get the cost with the tax added to it
costWithSurcharge = cost * surcharge; // change to costWithSurcharge from surcharge, so that the value of surcharge will not be overwritten, this will be the cost with surcharge
costWithTaxAndSurcharge = costWithTax + costWithSurcharge; // (#1) get the new cost, cost with tax and surcharge 

if (cost < 10) {
    cost = costWithTaxAndSurcharge; // just assign costWithTaxAndSurcharge to cost, no need to calculate again, same calculations with (#1) above
    System.out.printf("Amount due: $%.2f ", cost);
    System.out.println("");
    System.out.printf("Surcharge added is: $%.2f ", surcharge);
} else if (cost <= 250) {
    cost = costWithTax;
    System.out.printf("Amount due: $%.2f ", cost);
}

System.out.print("Enter payment amount: ");
payment = kb.nextDouble();

while (payment <= cost) {
    System.out.print("Payment is invalid. Enter payment amount agian: ");
    payment = kb.nextDouble();
}

changeDue = payment - cost;
System.out.print("Change due: " + changeDue);

kb.close();