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语言中的,不同写法有不同效果