主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
RingoCrystal
2024年4月3日 09:51
数字统计 题解:转string暴力破
P1002
回复 0
|
赞 0
|
浏览 576
#include <bits/stdc++.h> using namespace std; int main(){ int l,r; while(cin>>l>>r){ int ans=0; for(int i=l;i<=r;i++){ string s=to_string(i); for(int j=0;j<s.size();j++){ if(s[j]=='2')ans++; } } cout<<ans<<endl; } retu...
lingdongyang
2024年3月18日 15:53
数字统计 题解:
P1002
回复 0
|
赞 0
|
浏览 555
#include<stdio.h> int main() { int l = 0, r = 0; scanf("%d %d", &l, &r); int cnt = 0;//计数 //把i当作轮次,不然会死循环 for (int i = l; i <= r; i++) { int test = i; while (test) { //余数而不是除数 if (test % 10 == 2) { cnt++; } test = test / 10; } } ...
周小黑02477
2024年3月17日 00:16
为啥只有30%通过,想不明白
P1002
回复 1
|
赞 0
|
浏览 552
#include<stdio.h> #include<iostream> #include<string> #include<string.h> #include<math.h> #include<algorithm> using namespace std; int main() { int l, r; while (cin >> l >> r) { int count = 0; for (int i = l; i <= r; i++) ...
huanghu
2024年3月15日 12:21
数字统计 题解:简洁c++
P1002
回复 1
|
赞 1
|
浏览 507
#include<stdio.h> #include<iostream> using namespace std; int main(){ int L=0,R=0; cin>>L>>R; int count = 0; for(int i = L; i<=R;i++){ int t = i; while(t!=0){ if((t%10) == 2){ count++; ...
小酒
2024年3月11日 15:52
数字统计 题解:
P1002
回复 0
|
赞 0
|
浏览 587
1002解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n,m,w; int count=0; scanf("%d %d",&n,&m); for(int i=n;i<=m;i++)  ...
Leee0809
2024年3月10日 22:45
数字统计 题解:
P1002
回复 0
|
赞 0
|
浏览 481
#include <stdio.h> #include <stdlib.h> int main() { //单独提取每一位数,然后与2进行比较,计数器计数 int L,R,a[6]; int CNT=0;//计数器 scanf("%d %d",&L,&R); for(int i=L;i<=R;i++) &n...
zhangan
2024年3月5日 20:13
数字统计 题解:
P1002
回复 0
|
赞 0
|
浏览 539
#include <stdio.h> void jishu(int a, int b) { int k = 0; int count = 0; int c=0; for (int i = a; i <= b; i++) { c = i; while(c&...
活着的传奇
2023年8月16日 11:03
数字统计 题解:
P1002
回复 0
|
赞 0
|
浏览 907
#include<bits/stdc++.h> using namespace std; int count2(int a){ int jishu=0;int b; while(a!=0){ b=a%10; a=a/10; if(b==2) { jishu++; } } return jishu; } int main(){ int a,b;int count1=0; cin>>a;cin>>...
要一根华子
2023年7月25日 11:42
数字统计 题解:
P1002
回复 0
|
赞 1
|
浏览 986
#include<bits/stdc++.h> using namespace std; int main(){ int L,R,count=0,temp; cin>>L>>R; for(int i=L;i<=R;i++){ temp=i; while(temp!=0){ // 一般数字 ...
猪蹄子全是肉
2023年5月4日 17:36
数字统计 题解:
P1002
回复 0
|
赞 1
|
浏览 1.2k
#include <iostream> #include <algorithm> #include <cmath> #include <cstring> using namespace std; const int N = 100010; // 统计一个数字中 2 的个数 int count2(int n){ int k=0, res=0; if (n < 2) { // 如果 n 小于 2,则直接返回 0 &n...
1
2
3
题目
数字统计
题解数量
24
发布题解
热门题解
1
P1002 - 数字统计 - C
2
给出左右边界,统计2出现次数
3
c++ 1002 方法:整型转换为字符串类型
4
解
5
数字统计 题解:
6
递归求解(无需遍历)
7
循环统计每个数中2数量
8
数字统计 题解:
9
人生苦短,我用Python
10
1002 - 数字统计