标签:temp 个数 运算 pre 三元运算符 print 运算符 方式 三元运算
int a = 10;
int b = 100;
int c = 1000;
int max = 0;
if (a > b) {
if (a > c) {
max = a;
} else {
max = c;
}
} else if (b > a) {
if (b > c) {
max = b;
} else {
max = c;
}
} else if (c > a) {
if (c > b) {
max = c;
} else {
max = b;
}
}
int temp = a>b?a:b;
int max = temp>c?temp:c;
System.out.println(max);
标签:temp 个数 运算 pre 三元运算符 print 运算符 方式 三元运算
原文地址:https://www.cnblogs.com/fengxia/p/10202317.html