public class HelloWorld {
public static void main(String[] args) {
int one = 20 ;
if(one%2==0){
System.out.println("one是偶数");
}
}
你的int one = 20 ;应该是用的中文的;符号,所以会出问题
if 条件语那里少了一个 } 大括号来结束 你这个运行结果
你用的是eclipse嘛?我用这个运行并没有什么问题
public class HelloWorld{ public static void main(String[] args) { int i = 20; if(i%2==0){ System.out.println("i是偶数"); } } }