在s=input().split()
L,R = int(s[0]),int(s[1])
total=0
for i in range(L,R+1):
while i != 0:
if i % 10 == 2:
total += 1
i //= 10
print(total)
``
练习7/11-统计数字的出现次数
于 2022-07-11 11:50:10 首次发布