主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
小酒
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
64
发帖
0
笔记
0
Ta的粉丝
100
关注数
0
粉丝数
100
获赞数
4
阅读数
36027
进制转换3 题解:
1422解题思路 最开始出现80%,最后修改sum的类型为long,Accepted!! #include <bits/stdc++.h> using namespace std; int main() { int m,n; char x; sca...
P1422
2024年3月15日 17:17
回复 1
|
赞 2
|
浏览 775
删除最大最小数 题解:
也出现了75%,看大佬们的解法发现没有考虑max和min相等的问题,用掐头去尾解决问题 #include <bits/stdc++.h> using namespace std; int main() { int n; scanf("%d",&n);...
P1022
2024年3月21日 15:08
回复 0
|
赞 0
|
浏览 576
成绩再次排序 题解:
1817题目解析 #include <bits/stdc++.h> using namespace std; struct Student{ string name; int y; int m; int yu; int sum; }stu[100...
P1817
2024年3月20日 15:46
回复 0
|
赞 0
|
浏览 435
排序去重 题解:
1898解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n; scanf("%d",&n); int a[n]={0}; int b[n]={0}; ...
P1898
2024年3月20日 14:58
回复 0
|
赞 0
|
浏览 378
排序 - 华科 题解:
1399解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { int a[105]={0}; ...
P1399
2024年3月19日 11:08
回复 0
|
赞 0
|
浏览 494
成绩排序 - 华科 题解:
1404解题思路:重点在于是先排成绩,再排名字,最后排年龄,还是先排年龄,再排名字,最后排成绩。 #include <bits/stdc++.h> using namespace std; struct Student{ string name; int ag...
P1404
2024年3月19日 11:04
回复 0
|
赞 0
|
浏览 433
快速排序 题解:
1590解题思路:仍然用sort进行排序,但是注意输入数据的范围 #include <bits/stdc++.h> using namespace std; int main() { long long n; while(cin>>n)...
P1590
2024年3月19日 10:50
回复 0
|
赞 0
|
浏览 498
整数奇偶排序 题解:
1248解题思路:sort仍然YYDS #include <bits/stdc++.h> using namespace std; bool cmp(int a,int b) { return a>b; } int main() { int ...
P1248
2024年3月17日 21:32
回复 0
|
赞 1
|
浏览 473
0和1的个数 题解:
1008解题思路 #include <bits/stdc++.h> using namespace std; int main() { int x,i=0; int count0=0,cou...
P1008
2024年3月11日 15:54
回复 3
|
赞 0
|
浏览 934
国名排序 题解:
1217解题思路:sort()YYDS #include <bits/stdc++.h> using namespace std; struct Student{ string name; }stu[105]; bool alph_ASC(Student a,...
P1217
2024年3月17日 20:52
回复 0
|
赞 0
|
浏览 520
成绩排序2.0 题解:
1159解题思路:使用stable_sort()和结构体实现排序;先对学号排序,后对成绩排序; #include <bits/stdc++.h> using namespace std; struct Student{ int num; double ...
P1159
2024年3月17日 20:41
回复 0
|
赞 0
|
浏览 611
字母频率 题解:
1019解题思路:同样,用数组来记录 #include <bits/stdc++.h> using namespace std; int main() { char a[1000]={0}; gets(a); int l=strlen(a); int...
P1019
2024年3月16日 18:41
回复 0
|
赞 0
|
浏览 500
字母统计 题解:
1292解题思路:利用了数组的来记录,而不是存储 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; int b[105]={0}; //A为65 ...
P1292
2024年3月16日 17:55
回复 0
|
赞 0
|
浏览 502
查找1 题解:
1388解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { int a[105]={0}; for(int ...
P1388
2024年3月16日 17:29
回复 0
|
赞 0
|
浏览 460
查找第K小数 题解:
1383解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n;//表示有多少数据 int k; while(cin>>n) ...
P1383
2024年3月16日 17:06
回复 0
|
赞 0
|
浏览 545
进制转换2 题解:
1259解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]; while(cin>>a) { int l=strlen(a); ...
P1259
2024年3月15日 15:09
回复 3
|
赞 0
|
浏览 917
素数 题解:
1375解题思路 #include <bits/stdc++.h> using namespace std; int main() { int m; int count=0;//记录1到m之间是否有素数 while(...
P1375
2024年3月15日 22:26
回复 0
|
赞 0
|
浏览 528
水仙花数 题解:
1034解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n,m; while(cin>>n>>m) { in...
P1034
2024年3月15日 22:12
回复 0
|
赞 0
|
浏览 692
01序列 题解:
1001解题思路 #include <bits/stdc++.h> using namespace std; int main() { int i;  ...
P1001
2024年3月11日 15:51
回复 3
|
赞 0
|
浏览 664
随机数 题解:
1009解题思路 #include <bits/stdc++.h> using namespace std; int main() { int sum=0; int a[105]={0}; for(int i=0;i<5;i++) { a...
P1009
2024年3月15日 16:29
回复 0
|
赞 0
|
浏览 748
1
2
3
4
本科学校:。。。
目标学校:。。。
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!