仅使用三个 If 语句(没有其他)且没有任何循环,如何获得三个数字的最小值和最大值?我有以下代码,它只给了我最大值:
max = a;
min = a;
if (b > max)
{
max = b;
}
if (c > max)
{
max = c;
}
如何使用另外一个 if 语句获得最小值?