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