public class Test2 {
/*
* 需求:获取三个数中的最大值
* if语句的嵌套使用
*/
public static void main(String[] args) {
int a = 20;
int b = 98;
int c = 80;
if (a > b) {
if ( a > c) {
System.out.println(a + "是最大值");
}else {
System.out.println(c + " 是最大值");
}
}else {
if (b > c) {
System.out.println(b + "是最大值");
}else {
System.out.println(c + "是最大值");
}
}
}
}
|
|