题解列表

筛选

2215: 蓝桥杯算法训练-1的个数

摘要:解题思路:注意事项:参考代码:n=int(input()) s =0 for i in range(1,n+1):     num=0     for j in str(i):       ……