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

public class HelloWorld { public static void main(String[] args) { int one = 20 ; if(one % 2 == 0) System.out.prinln("one是偶数"); } }

哪里错了大神

提问者:慕UI4435186 2018-08-15 14:38

个回答

  • 泥丶黎
    2018-08-15 15:46:28
    已采纳

    println


  • 慕雪1569122
    2018-08-15 23:51:24

    public class HelloWorld {
        public static void main(String[] args) {
            int one = 20;
            if(ont % 2 == 0){
            System.out.println("one是偶数");
            }
        }
    }


  • 慕雪1569122
    2018-08-15 23:47:59

    println,你这个代码在编译的时候就会指出错误

  • fireflygirl
    2018-08-15 17:06:00

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


  • 泥丶黎
    2018-08-15 15:50:08

    if条件语句少了一对大括号,虽然能运行但是代码最好写的规范点=-=

  • 慕UI4435186
    2018-08-15 14:39:14

    少个t