首先int类型的取值范围为-2147483648~2147483647,而不是-2147483647。接下来看你的程序,X1、X2是什么类型,你也未定义,这样肯定不能通过编译,若你将X1、X2定义为int类型的,这个程序肯定是没问题的。
这是我编的程序,肯定运行没问题。祝楼主早日成功!:)
public class ShiYan {
public static void main(String[] args) {
int x,x1,x2;
x1=10;
x2=98;
x=x1+x2;
System.out.println(x);
}
} |