為什么在括號里的每局都要加three,引號里的代表著什么意思
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.out.println("three/=one==>"+three);
? ? ? ? three%=one;
? ? ? ? System.out.println("three%=one==>"+three);
2019-05-23
雙引號引起來的是字符,直接顯示的部分,加號是 把 three 和字符 分隔開? 如果()里面沒有字符 就不用加+號
2019-05-07
引號里寫的東西就是你想打出來的東西,你寫什么進(jìn)去,就會原封不動打出來。以System.out.println("three=one+two==>"+three);這一句為例子,你寫“three=one+two==>”
運(yùn)行出來就是three=one+two==>;+表示加上,+three,意思是除了要print出前面引號內(nèi)的內(nèi)容,還要print three所代表的值,也就是30。 這一整句話效果就是print出three=one+two==>30,然后換行