x+、+y+,還有頭頂的雙引號又是什麼意思、怎麼用的(有時候放在x前上方,有時候又不放)
package Test0831;
public class QTest_3 {
public static void main(String[] args) {
int a= 10;
int b=1,c=2;
String str = "helloWorld!";
System.out.println("a="+a);
System.out.printf("a=%d\n",a);
System.out.println("str="+str);
System.out.printf("str=%s\n",str);
System.out.println("b+c="+(b+c));
//但是
System.out.println("b+c="+b+c);
//實際上+b+c是打印了字符1和字符2
System.out.printf("b+c=%d\n",(b+c));
}
}