第26214题 单选题
找输入N个正整数最大值的代码中,L1标记行对应流程图应使用的图形是什么

下面代码用来找出输入的N个正整数中最大的一个。如果将代码段用流程图来表示,则L1标记的代码行应该使用的图形是:

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 }}%
答案解析