题解 2830: 数字统计

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

统计2出现的次数(python简单方法)

摘要:解题思路:用for循环将数字已字符串的形式添加到列表中,用count函数统计2的数量参考代码:L, R = map(int, input().split()) num_list = [] for ……

编写题解 2830: 数字统计

摘要:解题思路:注意事项:参考代码:l,r=map(int,input().split())times=0for i in range (l,r+1):    times+=str(i).count(&#3……

2830: 数字统计

摘要:参考代码:L, R = map(int, input().split()) s = 0 for i in range(L, R + 1):     s += str(i).count('……