我正在为我的 Java 类分配作业,但我不断收到编译器错误。
我得到的错误是“不是一个语句小计++总;” 和“错误:';' 预期小计 ++ 总计;"。
任何建议将不胜感激。
任务是创建一个程序,该程序将数字相加并在用户输入零后打印小计,并在两个连续的零后打印完整的总计。
我正在使用这个网站进行编程和编译: http: //www.compileonline.com/compile_java_online.php
提前致谢。
public class Homework4{
public static void main(String []args){
int n;
int previous = -99999;
int total = 0;
int subtotal = 0;
System.out.println("This program will add numbers you input.");
System.out.println("Once you input a number, press enter.");
System.out.println("When you want the subtotal of your numbers, input 0.");
System.out.println("When you want the complete total, input 0 once more.");
n = scanner.nextInt ( );
while (true) {
if (n == 0 && previous == 0) {
System.out.println("Total: " + total);
} else if (n == 0) {
subtotal ++ total;
System.out.println("Subtotal: " +subtotal);
subtotal == 0;
previous == 0;
} else {
n ++ subtotal;
previous == n;
}
n = scanner.nextInt ( );
}
}
}