多输入输出练习1-题解(Python代码) ```pythonwhileTrue:ls=list()ls=map(int,input().split())max=-999999forainls:ifa>max:max=aprint(max)``` 题解列表 2020年02月24日 0 点赞 0 评论 1298 浏览 评分:9.9
1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:while True: try: l=list(map(int,input().split())) h=[] …… 题解列表 2022年02月12日 0 点赞 0 评论 644 浏览 评分:6.0
多次输入输出每行最大值python 摘要:解题思路:注意事项:输入可能会有点问题,所以在except后面加一个EOFError参考代码:while True: try: L = list(map(int,input().s…… 题解列表 2023年03月19日 0 点赞 0 评论 555 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:import sys for str in sys.stdin: str=list(map(int,str.split())) max=0 …… 题解列表 2024年04月20日 0 点赞 0 评论 493 浏览 评分:0.0