為什么運(yùn)行出來(lái)都是亂碼
public class HelloWorld {
? ? public static void main(String[] args) {
int one = 20 ;
? ? if( one % 2 == 0){
? ? ? ? System.out.println("one是偶數(shù)");
? ? }
}
public class HelloWorld {
? ? public static void main(String[] args) {
int one = 20 ;
? ? if( one % 2 == 0){
? ? ? ? System.out.println("one是偶數(shù)");
? ? }
}
舉報(bào)
2016-01-11
public class HelloWorld {
? ? public static void main(String[] args) {
int one = 20 ;
? ? ? ? if(one%2==0){
? ? ? ? ? ? System.out.println("one是偶數(shù)");
? ? ? ? }
}
}
對(duì)一下 ?你的if(one%2==0) ?你的括號(hào)一個(gè)是英文,一個(gè)是中文,要統(tǒng)一用英文的。還有少了個(gè)大括號(hào)}
2016-01-10
public class HelloWord {
? ? public static void main(String[] args) {
? ? int one = 20 ;
? ? if( one % 2 == 0){
? ? System.out.println("one是偶數(shù)");
? ? }
? ?}
}
完整拷過(guò)去再試一下
2016-01-10
這兒你的括號(hào)好像用的中文括號(hào)。改為英文的把。
然后最后少了一個(gè)花括號(hào)。
如果在命令行編譯的時(shí)候有亂碼,把文件另存為ANSI編碼格式。
2016-01-10
編碼格式改為UTF-8