c# 编写一个程序,输入3个整数,用三元运算符求出其中的最大值和最小值

2024-11-14 08:01:13
推荐回答(1个)
回答1:

int a;
int b;
int c;
int temp;
最大值:
temp = a>b?a:b;
temp = temp > c?temp :c;
MaxValue:temp
最小值:
temp = atemp = temp < c?temp :c;
MinValue:temp