用 CMD 执行时显示 else 后面的语句中文是非法字符
public class Hello{
public static void main(String arg[])
{
int a=4;
int b=8;
if(b%a==0)
System.out.println("可以整除");
else
{System.out.println("不可以整除");
}
}
}
[local]1[/local]
2014-11-01 16:51
2014-11-01 17:26
2014-11-03 09:16