class OperateDemo
{
public static void main(String[] args)
{
//int x=4270;
//x=x/1000*1000;
// System.out.println(-1%5);
//int a =3,b;
//b= ++a;
//System.out.println("a="+a);
//字符串数据和任何数据使用+都是相连接,最终都会变成字符串。
System.out.println("hello world");
System.out.println("hello java");
}
}
再麻烦你一下。为什么我在 hello world上面加上注释,反而运行不了了呢???提示我编码GBK的不可映射字符 呢?? |