结果package zongheanli;public class zongheanli3 { public static void main(String[]args) { } //定义整型变量x并初始化为-5 int x=-5; //定义整型变量y并初始化0 int y=0; //根据所给条件,使用多重if-else结构求y的值 if(x<0) { System.out.println("y=-1"); } else if(x==0) { System.out.println("y=0"); } else{ System.out.println("y=1"); } //输出x和y的值 }我想问为什么定义完了y的值,还要求y 这个程序无法运行 帮下忙谢谢
2 回答
已采纳
___C___
TA贡献168条经验 获得超109个赞
package zongheanli; public class zongheanli3 { public static void main(String[]args) { //}//<<<<<<<<<<<<<<<<<<<<<<-----程序无法运行,是由于你这里多打了一个右括号 //定义整型变量x并初始化为-5 int x=-5;//定义整型变量y并初始化0 int y=0;//根据所给条件,使用多重if-else结构求y的值 if(x<0) {System.out.println("y=-1");} else if(x==0) {System.out.println("y=0");} else{System.out.println("y=1");} //输出x和y的值 }
谢谢采纳
添加回答
举报
0/150
提交
取消