第25652题 判断题
判断给定Python代码输入任意整数(含负整数、0、正整数)时输出是否都为0
 N= int(input())
 while N: 
     N//= 10
 print(N)
A

正确

B

错误