写一个计数器程序,要求反复输入一位数字,遇到数字0结束输入,统计输入了多少个数字(不含0)并输出结果。
a=int(input("请输入一个数字"))
ans= #ans用来统计数字个数
while :
ans+=
print(ans)