主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
huanghu
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
55
发帖
0
笔记
0
Ta的粉丝
100
关注数
1
粉丝数
100
获赞数
12
阅读数
31008
统计同成绩学生人数 题解:
#include<stdio.h> #include<iostream> #include<vector>; using namespace std; int main(){ int n; while(cin>>n &am...
P1329
2024年3月21日 11:55
回复 0
|
赞 0
|
浏览 407
身份证校验 题解:身份证校验c++
#include <stdio.h> #include <iostream> #include <string> #include <string.h> #include <algorithm> #include <...
P1722
2024年3月21日 10:51
回复 0
|
赞 0
|
浏览 758
剩下的树 题解:c++
#include<stdio.h> #include<iostream> using namespace std; //数组先全部初始化为1代表该位置有树,然后根据输入的值逻辑上用0删除,最后遍历数组即可,要注意n个位置有n+1课树 int main()...
P1175
2024年3月18日 13:36
回复 0
|
赞 0
|
浏览 535
成绩排序 - 华科 题解:c++利用sort函数实现
#include<stdio.h> #include<string.h> #include<string> #include<algorithm> #include<iostream> using namespace s...
P1404
2024年3月18日 01:23
回复 0
|
赞 2
|
浏览 520
逆序数 题解:
#include<stdio.h> #include<string.h> #include<string> #include<algorithm> #include<iostream> using namespace s...
P1039
2024年3月18日 01:09
回复 0
|
赞 0
|
浏览 498
特殊排序 题解:C++
#include<stdio.h> #include<string.h> #include<algorithm> #include<iostream> using namespace std; int main(){ int...
P1400
2024年3月17日 23:01
回复 0
|
赞 0
|
浏览 381
最大公约数1 题解:C++
#include<stdio.h> #include<iostream> using namespace std; int main(){ int n; cin>>n; int arr[1000] = {0}; for(int ...
P1426
2024年3月17日 12:17
回复 0
|
赞 0
|
浏览 474
字符串排序3 题解:
#include<stdio.h> #include<iostream> #include<string> #include<algorithm> using namespace std; bool cmp(string s1,...
P1261
2024年3月16日 18:13
回复 0
|
赞 0
|
浏览 499
IP地址 题解:C++
#include<stdio.h> #include<cstring> #include<iostream> using namespace std; const int N = 110; char a[4][N];...
P1023
2024年3月16日 17:18
回复 0
|
赞 0
|
浏览 672
后缀子串排序 题解:C++ sort
#include<stdio.h> #include<iostream> #include<algorithm> #include<string> using namespace std; int main(){ strin...
P1294
2024年3月16日 16:57
回复 0
|
赞 0
|
浏览 653
猴子报数 题解:利用vector对size取余来完成
#include<stdio.h> #include<iostream> #include<vector> using namespace std; int main(){ int n,s,m; while(cin>>n)...
P1081
2024年3月16日 15:43
回复 0
|
赞 1
|
浏览 448
字符个数 题解:C++
#include<stdio.h> #include<string> #include<iostream> using namespace std; int main(){ int ch=0,shu=0,kong=0,el=0; st...
P1042
2024年3月16日 15:00
回复 0
|
赞 0
|
浏览 400
数字统计 题解:简洁c++
#include<stdio.h> #include<iostream> using namespace std; int main(){ int L=0,R=0; cin>>L>>R; int cou...
P1002
2024年3月15日 12:21
回复 1
|
赞 1
|
浏览 503
判断是否是整数 题解:c++暴力
#include<stdio.h> #include<iostream> #include<string> using namespace std; int main(){ string str; while(cin>...
P1031
2024年3月15日 12:17
回复 0
|
赞 0
|
浏览 455
日期累加 题解:
#include <stdio.h> #include <iostream> using namespace std; int main(){ int arr[13] = {0,31,28,31,30,31,30,31,31,30,31,30,3...
P1446
2024年3月15日 11:51
回复 0
|
赞 0
|
浏览 461
细菌的繁殖 题解:C
#include<stdio.h> #include<iostream> using namespace std; int main(){ int n; cin>>n; while(n--){ ...
P1033
2024年3月15日 11:27
回复 0
|
赞 0
|
浏览 631
动态查找问题 题解:
#include<stdio.h> #include<iostream> using namespace std; int main(){ int n; cin>>n; int arr[100000]; ...
P1477
2024年3月14日 21:33
回复 0
|
赞 0
|
浏览 483
二元组整数 题解:
#include <stdio.h> #include <algorithm> using namespace std; int main() { int n; scanf("%d", &n); int arr[n]...
P1024
2024年3月14日 19:40
回复 0
|
赞 1
|
浏览 658
整数奇偶排序 题解:
#include<stdio.h> #include<iostream> #include<algorithm> using namespace std; bool cmp(int a,int b){ if(a%2!=b%2){ ...
P1248
2024年3月14日 14:34
回复 0
|
赞 0
|
浏览 477
素数判定 - 哈尔滨工业大学 题解:
#include<stdio.h> #include<iostream> using namespace std; bool sushu(int n){ for(int i = 2 ; i<n ;i++){ if(n%i==0){ ...
P1355
2024年3月14日 12:13
回复 0
|
赞 0
|
浏览 414
1
2
3
本科学校:郑州财经学院
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!