问答详情
源自:4-1 Java条件语句之 if

我能知道我哪里错了吗?

public class HelloWorld {

    public static void main(String[] args) {

int one=20 ;

  if (one%2=0){

        System.out.println("one是偶数");   

  }

    

    

    

}

}


提问者:qq_岚风依旧_0 2015-01-25 15:42

个回答

  • sixGod
    2015-01-25 18:14:18
    已采纳

    在if中条件比较用==