首页 > 试题广场 >

求最大值

[编程题]求最大值
  • 热度指数:6755 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
输入10个整数,要求输出其中的最大值。

输入描述:
测试数据有多组,每组10个整数。


输出描述:
对于每组输入,请输出其最大值(有回车)。
示例1

输入

10 22 23 152 65 79 85 96 32 1

输出

max=152

Life is too short, I use python.

only one line, just one line.


while True:
    try:
        print("max="+str(max(map(int,input().split()))))
    except:
        break
发表于 2017-10-01 10:41:16 回复(0)
try:
    while 1:
        print 'max={a}'.format(a = max(map(int, raw_input().split())))
except:
    pass

发表于 2016-12-26 21:20:56 回复(0)

问题信息

难度:
2条回答 5285浏览

热门推荐

通过挑战的用户

查看代码
求最大值