程序非法字符與藍Ĵ
public class Project_X
{
public static void main(String[] args){
byte x;
int a=270;
double b =128.128;
System.out.println("int converted to byte");
x=(byte) a;
System.out.println("a and x "+ a +" "+x);
System.out.println("double converted to int");
a=(int) b;
System.out.println("b and a "+ b +" "+a);
System.out.println("n double converted to byte");
x=(byte) b;
System.out.println("b and x "+b +" "+x);
}
}
錯誤得到
非法字符:\ 160
即時開始,已經是我想不通的問題。請幫助 –
什麼行會導致錯誤?請發佈格式化的代碼,而不是所有左對齊的代碼,因爲這很難閱讀。 –
我跑上面的程序並沒有得到其他 – Kon