课程
/后端开发
/Java
/Java入门第一季(IDEA工具)升级版
哪里错了大神
2018-08-15
源自:Java入门第一季(IDEA工具)升级版 4-1
正在回答
慕UI4435186 提问者
public class HelloWorld { public static void main(String[] args) { int one = 20; if(ont % 2 == 0){ System.out.println("one是偶数"); } } }
println,你这个代码在编译的时候就会指出错误
System.out.println("one是偶数");
if条件语句少了一对大括号,虽然能运行但是代码最好写的规范点=-=
少个t
举报
0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始
2 回答public class HelloWorld{ public static void main(String[] args) { int one = 10 ; int two = 20 ; int three = 0 ; int a =one+two; int b =two*2; int c =(two*2)-one; int d =two*=one; int f =two/
2 回答public class HelloWorld{ public static void main(String[] args) { System.out.println(hobby); } }
4 回答public class HelloWorld!{ public static void main(String[] args) { System.out.println("Hello Imooc"); } }
1 回答public class HelloWorld! { public static void main(String[] args) { System.out.println("hello imooc"); } }
10 回答public class HelloWorld{ public static void main(String[]args){ int i=1; int sum=0; for(;i<=10;i++){ if(i%2!=0){ continue; } sum=sum+i; } System.out.println("1