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

写成int a为啥不可以??????

public class HelloWorld {    public static void main(String[] args) { int one = 20 ;        int a=20%2 if(a==0){     System.out.println("one是偶数");   }else{     System.out.println("one是奇数");   }                 } }写成int a为啥不可以??????

提问者:asdsfdfsewrw 2016-03-30 20:58

个回答

  • weibo_追水到死_0
    2016-03-30 21:18:10

    啥意思


    public class Hellow {

    public static void main(String[] args) { 

    int one = 20 ; 

    int a=one%2 ;

    if(a==0){ 

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

    }else{ 

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

    }                

    }


  • 111
    2016-03-30 21:15:42

    你在int a=20%2 后面少打了一个分号