作者: 745661590 时间: 2016-7-5 11:28
public class Demo1 {
public static void main(String[] args) {
int b=20;
int a=10;
int c=30;
if (a > b) {
if (a > c) {
System.out.println(a);
}else {
System.out.println(c);
}
}else { //(a < b)
if (b > c) {
System.out.println(b);
}else {
System.out.println(c);
}
}
}
}
应该是你的{}没写好,程序是对的作者: 花塔塔 时间: 2016-7-5 15:20
少大括号吧 编程习惯的问题作者: kang996758141 时间: 2016-7-5 23:05