Iam如初
2018-10-10 20:16
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
three = one + two ;
System.out.println("three = one + two ==>" + three);
three += one ;
System.out.println("three += one ==>" + three);
three -= one ;
System.out.println("three -= one ==>" + three);
three *= one;
System.out.println("three *= one ==>" + three);
three /= one ;
System.oue.println("three /= one ==>" + three);
three %= one ;
System.out.println("three %= one ==>" + three);
好的 谢谢哈(づ ̄3 ̄)づ╭❤~
out,不是oue
System.oue.println("three /= one ==>" + three);
第一:这个程序后面要加上 } } 结尾,第二:你的 /= 那里的输出语句 out 写成了 oue
中间是out,不是oue
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题