C题解 2829: 数1的个数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ long long a,b=0; scanf("%…… 题解列表 2025年01月26日 0 点赞 0 评论 28 浏览 评分:0.0
检验每个数位上的值并计数:临时变量、while属性,进位位置区分 摘要:解题思路:1.检验每个数位上的值并计数:while;%10求模;count++;/10更新。2.临时变量:转换for与while循环的区分属性:while会从0-n全部循环一遍,只用1次,内部/10迭…… 题解列表 2024年12月07日 0 点赞 0 评论 57 浏览 评分:0.0
超级复杂的方法,不建议参考. 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,a=0,b=0,c=0,d=0,e=0,j=0; scanf("%d",&n); …… 题解列表 2024年11月27日 0 点赞 0 评论 51 浏览 评分:0.0
2829: 数1的个数 摘要:解题思路:注意事项:致 别吃张博维giegie参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,s…… 题解列表 2024年03月30日 0 点赞 0 评论 179 浏览 评分:9.9
2829: 数1的个数 摘要:参考代码:arr = [str(i + 1) for i in range(int(input()))] print(''.join(arr).count('1'))…… 题解列表 2024年03月17日 0 点赞 0 评论 360 浏览 评分:0.0
编写题解 2829: 数1的个数 摘要:解题思路:注意事项:参考代码:n=int(input())times=0for i in range (1,n+1): times+=str(i).count('1')print…… 题解列表 2024年03月04日 0 点赞 0 评论 135 浏览 评分:0.0
编写题解 2829: 数1的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,sum=0; cin>…… 题解列表 2024年02月27日 0 点赞 0 评论 102 浏览 评分:0.0
题解 2829: 数1的个数 摘要:解题思路:额……自己理解,学了循环的应该都会吧,我不解释了\^w^/。注意事项:别抄我的,抄我的人我诅咒他电脑10秒关机参考代码:#include<bits/stdc++.h>#include<win…… 题解列表 2024年02月24日 0 点赞 0 评论 185 浏览 评分:6.0
题解 2829: 数1的个数 摘要:解题思路:分离数位注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,sum=0; …… 题解列表 2024年01月19日 0 点赞 0 评论 53 浏览 评分:0.0
2829: 数1的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a,x=0;//要付初值 …… 题解列表 2024年01月19日 0 点赞 0 评论 122 浏览 评分:9.9