我必须为Java编写一个分配代码,如果输入10以外的任何内容,我肯定会错失这个“ if语句”,这不会打印出变量信息。图片已附上。
import java.util.Scanner;
public class JavaApplication7 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int code = 0;
code = input.nextInt();
if (code == 10); {
System.out.println(code);
}
}
}
答案 0 :(得分:0)
没关系,我想我想通了,我早就结束了我的声明,或者这东西不是很宽容。编辑:刚看到snr回答了哈哈,谢谢。