• 2022-06-26
    以下Java的条件、循环结构的写法,有输出效果、且没有错误的有哪些?( )
    A: …… if(true); { System.out.println("hello"); } ……
    B: …… if(true) System.out.println("hello"); ……
    C: …… while(1){ System.out.println("hello"); } ……
    D: …… if(true){ System.out.println("hello"); } ……
  • 举一反三