主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Hegel
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
79
发帖
0
笔记
4
Ta的粉丝
221
关注数
2
粉丝数
221
获赞数
46
阅读数
198247
输入n个数添加到数组中,查找q次,每次找到输出find,未找到输出no并将查找数字插入数组
#include <iostream> using namespace std; #define N 100000 int main() { int n,a[N],len,q; cin>>n; for(int i=0;i<n;i++) ...
P1477
2023年3月25日 16:37
回复 0
|
赞 0
|
浏览 1.6k
根据先序遍历序列(空位置补0)创建二叉树
#include <iostream> #include <string> #include <stack> using namespace std; typedef struct Node { char data; struct Nod...
P1109
2023年3月25日 14:48
回复 0
|
赞 1
|
浏览 2.0k
整数序列,先输出奇数递减,再输出偶数递增
#include <iostream> using namespace std; int main() { int a[10]; while (cin >> a[0] >> a[1] >> a[2] >> a[3] &...
P1248
2023年3月24日 21:52
回复 0
|
赞 0
|
浏览 2.0k
最大连续子序列O(n)
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ long long *a=new long long[n]; for(int i=0;i&...
P1172
2023年3月24日 21:20
回复 0
|
赞 0
|
浏览 2.0k
统计字符串s中字母数字空格以及其他字符的个数
#include <iostream> #include <string> using namespace std; int main() { int e=0,n=0,b=0,o=0; string s; getline(cin,s); for...
P1042
2023年3月24日 19:28
回复 0
|
赞 0
|
浏览 2.1k
大数加法
#include <iostream> #include <string> using namespace std; string SP(string s1, string s2) { int i = s1.size() - 1, j = s2.size(...
P1474
2023年3月24日 19:22
回复 0
|
赞 0
|
浏览 2.3k
复数的加法与乘法
#include <iostream> using namespace std; int main() { float a,b,c,d; char x; cin>>a>>b>>c>>d>>x; if...
P1021
2023年3月24日 17:32
回复 0
|
赞 1
|
浏览 2.1k
旋转矩阵
#include <iostream> #include <iomanip> using namespace std; int main() { int n; cin >> n; int** a = new int* [n]; fo...
P1216
2023年3月24日 16:26
回复 0
|
赞 1
|
浏览 2.3k
根据规律:day1:1;day2:5,day3:13求dayn的细菌数量
#include <iostream> using namespace std; int main() { int n; cin>>n; for(int i=0,a;i<n;i++){ cin>>a; if(a==0||...
P1033
2023年3月24日 15:55
回复 0
|
赞 1
|
浏览 2.3k
阶乘求和(大数相乘思想)
#include <iostream> #include <string> using namespace std; string SP(string s1, string s2) { int i = s1.size() - 1, j = s2.size(...
P1044
2023年3月24日 15:09
回复 0
|
赞 1
|
浏览 1.9k
判断是否为整数
#include <iostream> #include <string> using namespace std; int main() { string s; while (getline(cin, s)) { int flag = 0; ...
P1031
2023年3月24日 14:21
回复 0
|
赞 1
|
浏览 2.1k
最简真分数数量
#include <iostream> using namespace std; int main() { int n; while (cin >> n) { int* a = new int[n], sum = 0; for (int i ...
P1180
2023年3月24日 11:29
回复 0
|
赞 1
|
浏览 2.3k
给出时与分,求某时刻经过该时分后是几点
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; string* s = new string[n]; ...
P1053
2023年3月24日 10:58
回复 0
|
赞 1
|
浏览 2.1k
对字符串内的各个字符排序
#include <iostream> using namespace std; int main() { string s; while(cin>>s){ for(int i=0,flag=0;i<s.size()-1;i++){ ...
P1254
2023年3月24日 10:37
回复 0
|
赞 0
|
浏览 2.1k
(1+2+...+a)+(1^2+2^2+...+b^2)+(1/1+1/2+...+1/c)
#include <iostream> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; float sum = (1 + a) * a / ...
P1045
2023年3月24日 10:30
回复 0
|
赞 3
|
浏览 2.3k
括号匹配(仅有[]与())
#include <iostream> #include <stack> #include <string> using namespace std; int main() { string s; cin>>s; stac...
P1501
2023年3月24日 10:20
回复 0
|
赞 1
|
浏览 2.5k
求n^5%3
#include <iostream> using namespace std; int main() { int n; while(cin>>n) cout<<(n%3)*(n%3)*(n%3)*(n%3)*(n%3)%3<&l...
P1500
2023年3月22日 21:30
回复 0
|
赞 2
|
浏览 2.9k
合并两有序链表,输出合并结果
#include <iostream> using namespace std; typedef struct LNode{ int data; struct LNode *next; }LNode,*List; int main() { List L1=n...
P1025
2023年3月22日 21:19
回复 0
|
赞 0
|
浏览 2.8k
求某年的第几天是该年的几月几日
#include <iostream> using namespace std; bool Jud(int year) { return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0); ...
P1410
2023年3月22日 20:55
回复 0
|
赞 0
|
浏览 2.5k
输出区间[a,b]内的素数
#include <iostream> #include <cmath> using namespace std; bool Jud(int a) { if (a <= 1) return false; if (a == 2) ret...
P1102
2023年3月22日 20:32
回复 0
|
赞 0
|
浏览 2.3k
1
2
3
4
本科学校:郑州轻工业大学
目标学校:内蒙古大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!