首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
408真题
专业课程
兑换中心
登录
注册
上岸
huanghu
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
55
发帖
0
笔记
0
Ta的粉丝
101
关注数
1
粉丝数
101
获赞数
105
阅读数
44344
统计同成绩学生人数 题解:
#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
|
浏览 556
身份证校验 题解:身份证校验c++
#include <stdio.h> #include <iostream> #include <string> #include <string.h> #include <algorithm> #include <...
P1722
2024年3月21日 10:51
回复 0
|
赞 1
|
浏览 1.1k
剩下的树 题解:c++
#include<stdio.h> #include<iostream> using namespace std; //数组先全部初始化为1代表该位置有树,然后根据输入的值逻辑上用0删除,最后遍历数组即可,要注意n个位置有n+1课树 int main()...
P1175
2024年3月18日 13:36
回复 0
|
赞 0
|
浏览 726
成绩排序 - 华科 题解:c++利用sort函数实现
#include<stdio.h> #include<string.h> #include<string> #include<algorithm> #include<iostream> using namespace s...
P1404
2024年3月18日 01:23
回复 0
|
赞 4
|
浏览 807
逆序数 题解:
#include<stdio.h> #include<string.h> #include<string> #include<algorithm> #include<iostream> using namespace s...
P1039
2024年3月18日 01:09
回复 0
|
赞 0
|
浏览 684
特殊排序 题解: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
|
浏览 540
最大公约数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
|
赞 1
|
浏览 636
字符串排序3 题解:
#include<stdio.h> #include<iostream> #include<string> #include<algorithm> using namespace std; bool cmp(string s1,...
P1261
2024年3月16日 18:13
回复 0
|
赞 1
|
浏览 783
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
|
赞 1
|
浏览 997
后缀子串排序 题解:C++ sort
#include<stdio.h> #include<iostream> #include<algorithm> #include<string> using namespace std; int main(){ strin...
P1294
2024年3月16日 16:57
回复 0
|
赞 1
|
浏览 915
猴子报数 题解:利用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
|
赞 4
|
浏览 618
字符个数 题解: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
|
赞 4
|
浏览 635
数字统计 题解:简洁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
|
赞 5
|
浏览 698
判断是否是整数 题解: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
|
浏览 625
日期累加 题解:
#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
|
赞 2
|
浏览 619
细菌的繁殖 题解:C
#include<stdio.h> #include<iostream> using namespace std; int main(){ int n; cin>>n; while(n--){ ...
P1033
2024年3月15日 11:27
回复 0
|
赞 1
|
浏览 882
动态查找问题 题解:
#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
|
浏览 662
二元组整数 题解:
#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
|
赞 6
|
浏览 977
整数奇偶排序 题解:
#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
|
赞 1
|
浏览 603
素数判定 - 哈尔滨工业大学 题解:
#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
|
浏览 564
1
2
3
本科学校:郑州财经学院
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!