第10918题 单选题
求N个正整数最大值的Python代码中,L1标记的if判断行在流程图中应使用哪种图形?
1 Max = 0
2 N = int(input())
3
4 while(N):
5  val = int(input())
6  if val > Max: #L1
7   Max = val
8  N -= 1
9
10 print(Max)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析