判断题

运行下方代码,变量m无论取值是多少,print打印出的值都不可能大于30。

def n(x):

while x< 30:

x = x+1

return x

print(n(m))

A 正确
B 错误
赣ICP备20007335号-2