已知a,b,c是3个整数,下面程序输出的是( )。
if a >= b and a >= c: print(a) elif b >= c: print(b) else: print(c)
最大的数
中间大小的数
最小的数
不输出任何内容