主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
小酒
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
64
发帖
0
笔记
0
Ta的粉丝
100
关注数
0
粉丝数
100
获赞数
4
阅读数
36052
翻转数的和 题解:
1003解题思路 #include <bits/stdc++.h> using namespace std; int jisuan(int m) { int j=0,x=0; while(m%10==0) { m=m/10; } w...
P1003
2024年3月15日 16:15
回复 0
|
赞 1
|
浏览 422
字符游戏 题解:
1520解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n; scanf("%d",&n); char a[105]={0}; getchar(); ...
P1520
2024年3月15日 15:35
回复 0
|
赞 0
|
浏览 400
字符串处理 - 统计元音个数 题解:
1540解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; gets(a); int ca=0,ce=0,ci=0,co...
P1540
2024年3月15日 15:35
回复 0
|
赞 0
|
浏览 516
字符串连接 题解:
1397解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[300]={0}; while(gets(a)){ int k=0,i=0,c...
P1397
2024年3月15日 15:35
回复 0
|
赞 0
|
浏览 425
回文字符串 题解:
1414解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[1005]={0}; while(gets(a)) { ...
P1414
2024年3月15日 15:34
回复 0
|
赞 0
|
浏览 389
01字符串 题解:
1479解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n; int f1=1,f2=2; scanf("%d",&n); if(n==1) prin...
P1479
2024年3月15日 15:34
回复 0
|
赞 0
|
浏览 935
字符串内排序 题解:
1360解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; while(gets(a)) { int l=strlen(a)...
P1360
2024年3月15日 15:33
回复 0
|
赞 0
|
浏览 414
字符个数 题解:
1042解题思路 #include <bits/stdc++.h> using namespace std; int main() { int num=0,str=0,zero=0,other=0; char a[105]={0}; ...
P1042
2024年3月15日 15:33
回复 0
|
赞 0
|
浏览 364
统计字符 题解:
1320解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; char b[105]={0}; while(gets(a...
P1320
2024年3月15日 15:32
回复 0
|
赞 0
|
浏览 609
字符串排序 题解:
1254解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; while(gets(a)) { int l=strlen(a)...
P1254
2024年3月15日 15:32
回复 0
|
赞 0
|
浏览 510
删除字符串 题解:
1026解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; char b[105]={0}; gets(a); int l=strlen(a...
P1026
2024年3月15日 15:31
回复 0
|
赞 0
|
浏览 547
字符棱形 题解:
1473解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n; int i; scanf("%d",&n); for(i=1;i<=n;i++) ...
P1473
2024年3月15日 15:30
回复 0
|
赞 0
|
浏览 625
字符分类 题解:
1016解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0};//输入字符且保存字母 char b[105]={0};//保存数字 j char ...
P1016
2024年3月15日 15:30
回复 0
|
赞 0
|
浏览 433
字符移动 题解:
1012解题思路 #include <bits/stdc++.h> #include <string.h> using namespace std; int main() { char a[105]={0};//j char b[105]={0...
P1012
2024年3月15日 15:29
回复 0
|
赞 0
|
浏览 788
压缩日期 题解:
1936解题思路 #include <bits/stdc++.h> using namespace std; int main() { int year,month,day; int b[13]={0,31,28,31,30,31,30,31,...
P1936
2024年3月15日 15:26
回复 0
|
赞 0
|
浏览 428
首字母大写 题解:
1240解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; while(gets(a)) { int l=strlen(a); if(...
P1240
2024年3月15日 15:25
回复 0
|
赞 0
|
浏览 648
排序 题解:
1010解题思路 #include <bits/stdc++.h> using namespace std; int main() { int m; scanf("%d",&m); int a[105]={0}; int b[105]={0}...
P1010
2024年3月15日 14:24
回复 0
|
赞 0
|
浏览 761
日期计算 题解:
1051:为何正确率一直是50%呢 struct date{ int year; int month; int day; &nbs...
P1051
2024年3月11日 15:29
回复 4
|
赞 0
|
浏览 627
日期累加 题解:
1446:为何正确率一直是75%,大佬帮忙看一下,谢谢! #include <bits/stdc++.h> using namespace std; int main() { int...
P1446
2024年3月11日 15:25
回复 5
|
赞 0
|
浏览 606
矩阵求和 题解:
1135解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n,sum=0; &nb...
P1135
2024年3月11日 15:56
回复 0
|
赞 0
|
浏览 558
1
2
3
4
本科学校:。。。
目标学校:。。。
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!