第11090题 单选题
给定寻找N个正整数最大值的Python代码,其中L1标记的if判断代码行对应的流程图图形是什么?
Max = 0
N = int(input())

while(N):
  val = int(input())
  if val > Max: #L1
   Max = val
  N -= 1

print(Max)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析