我正在尝试制作一个输入硬币值的程序,以便给出票,但它似乎没有进入第一次,当我首先运行它时它不接受双打(例如0.1)或0.5)并且无论您输入的是什么号码,都说这是您的机票并结束!代码有什么问题?
import acm.program.*;
public class tickets extends ConsoleProgram {
public static double eisitirio = 1.2;
public void run(){
double nomisma=readInt("Insert coins and then press 0: ");
boolean synthiki=false;
double poso=0;
while (synthiki=false){
while (nomisma != 0){
if ((nomisma==0.1)||(nomisma==0.2)||(nomisma==0.5)||(nomisma==1)||(nomisma==2)||(nomisma==5)){
poso=poso+nomisma;
}else {
System.out.println("You did not insert a supported coin, please insert another one");
}
nomisma=readInt("Insert coins and then press 0: ");
}
if (poso < eisitirio){
System.out.println("You did not insert enough money, please insert more coins");
}else {
synthiki=true;
}
}
println("Here is your ticket");
poso=poso-eisitirio;
if ((poso/5) > 0){
println("You have change: 5 euros");
poso = poso-5;
}
if ((poso/2) > 0){
println("You have change: 2 euros");
poso = poso-2;
}
if ((poso/1) > 0){
println("You have change: 1 euros");
poso = poso-1;
}
if ((poso/0.5) > 0){
println("You have change: 50 cents");
poso = poso-0.5;
}
if ((poso/0.2) > 0){
println("You have change: 20 cents");
poso = poso-0.2;
}
if ((poso/0.1) > 0){
println("You have change: 10 cents");
poso=poso-0.1;
}
}
}
答案 0 :(得分:1)
你有条件,
while (synthiki=false){...}
应该是,
while (!synthiki){...}
第一个条件会将false
分配给synthiki
。由于synthiki
是boolean
,因此您可以直接在while() {...}
内使用该变量。此外,如果您必须检查synthiki
的值,请使用==
代替=
。
赞:while(synthiki == false) {...}
答案 1 :(得分:1)
你应该使用&#34; ==&#34; 比较,而不是&#34; =&#34; (的分配强>)。改变
while (synthiki=false)
到
while (synthiki == false)
答案 2 :(得分:1)
=
是赋值运算符。它将右侧表达式的值赋给左侧变量,并将其返回。如果要检查是否相等,则应使用==
运算符:
while (synthiki == false) {
或者更好,因为它是一个布尔变量,不要将它的值与文字进行比较,而是直接评估它:
while (!synthiki) {