幫我看看哪錯(cuò)了
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);
}
}
代碼加粗部分,為什么/沒有變色
2014-12-16
three%=one這句后面沒有分號,最后一個(gè)輸出語句應(yīng)該用加號拼接字符串不是用等號。
/沒變色不影響你的代碼,變不變色是由編譯器造成的,和代碼無關(guān)
2014-12-16
IDE中的編譯器報(bào)錯(cuò)的話,你把鼠標(biāo)放到報(bào)錯(cuò)的代碼上,會有相應(yīng)的錯(cuò)誤提示。一般編譯錯(cuò)誤,普通都是拼寫語法錯(cuò)誤居多。