测试数据有多组,每组10个整数。
对于每组输入,请输出其最大值(有回车)。
10 22 23 152 65 79 85 96 32 1
max=152
while True: try: print("max="+str(max(map(int,input().split())))) except: break
try: while 1: print 'max={a}'.format(a = max(map(int, raw_input().split()))) except: pass
这道题你会答吗?花几分钟告诉大家答案吧!
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题