编写题解 2829: 数1的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,x,i,count=0,t; scanf("%d",&n); fo…… 题解列表 2023年01月01日 0 点赞 1 评论 473 浏览 评分:8.4
(c语言)详细解读 摘要:解题思路:注意事项: 参考代码:#include"stdio.h"int main(){ int num=0,n=0,Num=0; scanf("%d",&num); for(;nu…… 题解列表 2023年01月03日 0 点赞 0 评论 194 浏览 评分:0.0
while循环又来咯,这个还是除余思想 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,k=0; //k,1的个数 scanf("%d",&n); for(int …… 题解列表 2023年01月19日 0 点赞 0 评论 146 浏览 评分:0.0
java数一的个数 摘要:解题思路:注意事项:参考代码:package seven;import java.util.Scanner;public class 数1的个数 { public static void mai…… 题解列表 2023年04月21日 0 点赞 0 评论 179 浏览 评分:9.9
2829: 数1的个数 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) {Scanner sc = new Scann…… 题解列表 2023年04月25日 0 点赞 0 评论 147 浏览 评分:0.0
数1的个数(C++代码) 摘要:参考代码:#include<iostream>using namespace std;int countOnes(int n) { int count = 0; for (int i = …… 题解列表 2023年07月12日 0 点赞 0 评论 140 浏览 评分:8.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int n, i, k = 0, …… 题解列表 2023年07月14日 0 点赞 0 评论 109 浏览 评分:9.9
数一的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,sum=0; cin>>n; …… 题解列表 2023年07月14日 0 点赞 0 评论 56 浏览 评分:3.0
2829: 数1的个数 摘要:``` #include using namespace std; int n,x,sum; int main(){ cin>>n; for( int i=1;i…… 题解列表 2023年11月18日 0 点赞 0 评论 102 浏览 评分:9.9
题解 2829: 数1的个数 摘要: #include using namespace std; int main(){ int n=0,a=0,b=0,c=0; cin>>n; …… 题解列表 2023年11月21日 0 点赞 0 评论 80 浏览 评分:9.9