public static void main(String[] args) {
int x = 100;
int y = 200;
System.out.println("x+y=" + x + y);
System.out.println(x + y + "=x+y");
}
java中的“+”区别于c语言中的,不同写法有不同效果
标签:200,java,int,动脑,System,动手,println,out
来源: https://www.cnblogs.com/333czh/p/15666757.html