JAVA中变量的问题,求大神讲解,本人小白。
publicclassConstDemo{//进入主程序publicstaticvoidmain(String[]args){intx=6;inty=3;//按客户需求,...
public class ConstDemo
{
//进入主程序
public static void main(String []args)
{
int x = 6;
int y = 3;
//按客户需求,求两个操作数的和,差,积,商
System.out.println(x + y);
System.out.println(x - y); 3 - 6);
System.out.println(x * y);
System.out.println(x / y);
}
}
编译时出错,错误如下:
---------- 编译JAVA ----------
ConstDemo.java:10: 错误: 不是语句
System.out.println(x - y); 3 - 6);
^
ConstDemo.java:10: 错误: 需要';'
System.out.println(x - y); 3 - 6);
2 个错误
输出完成 (耗时 0 秒) - 正常终止 展开
{
//进入主程序
public static void main(String []args)
{
int x = 6;
int y = 3;
//按客户需求,求两个操作数的和,差,积,商
System.out.println(x + y);
System.out.println(x - y); 3 - 6);
System.out.println(x * y);
System.out.println(x / y);
}
}
编译时出错,错误如下:
---------- 编译JAVA ----------
ConstDemo.java:10: 错误: 不是语句
System.out.println(x - y); 3 - 6);
^
ConstDemo.java:10: 错误: 需要';'
System.out.println(x - y); 3 - 6);
2 个错误
输出完成 (耗时 0 秒) - 正常终止 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询