第25570题 判断
判断给定Python代码中print(N)是否被执行0次或极多次(死循环)
N = input()
while N:
    print(N)
正确
错误
程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析