第26230题 单选题
以下查找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 }}%
答案解析