主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Hegel
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
79
发帖
0
笔记
4
Ta的粉丝
221
关注数
2
粉丝数
221
获赞数
46
阅读数
198241
分解质因数的个数
#include <iostream> #include <cmath> using namespace std; bool Jud(int a) { if (a <= 1) return false; if (a == 2) ret...
P1156
2023年3月22日 20:27
回复 0
|
赞 1
|
浏览 3.0k
杨辉三角(递归)
#include <iostream> using namespace std; void ShowCm(int m) { if (m > 0) { ShowCm(m - 1); for (int i = 0, temp = 1; i < m +...
P1392
2023年3月22日 16:57
回复 0
|
赞 2
|
浏览 3.2k
统计一串字符内的各个单词长度
注: 这串字符内有空格,必须使用getline(cin,s) #include <iostream> #include <string> using namespace std; int main() { string s; while(g...
P1394
2023年3月22日 16:21
回复 0
|
赞 0
|
浏览 2.2k
判断矩阵b为矩阵a旋转多少度
注: 1.多组输入数据 2.0°:a[i][j] == b[i][j] 3.90°:a[i][j] == b[j][n - i - 1] 4.180°:a[i][j] == b[n - i - 1][n - j - 1] 5.270°...
P1377
2023年3月22日 16:10
回复 0
|
赞 1
|
浏览 2.8k
括号匹配
#include <iostream> #include <string> #include <stack> using namespace std; int main() { int n; cin >> n; strin...
P1067
2023年3月21日 21:11
回复 0
|
赞 0
|
浏览 4.6k
十进制转八进制
#include <iostream> #include <string> using namespace std; int main() { int n; while(cin>>n){ string res=""; while...
P1417
2023年3月21日 19:48
回复 0
|
赞 1
|
浏览 2.5k
删除最大最小数
#include <iostream> using namespace std; int main() { int n; cin>>n; int *a=new int[n],max=0,min=0; for(int i=0;i<n;i++)...
P1022
2023年3月21日 19:44
回复 0
|
赞 1
|
浏览 3.0k
日期差值
#include <iostream> #include <string> using namespace std; //返回日期1是否早于日期2 bool Comp(string dat1, string dat2) { for (int i = 0;...
P1290
2023年3月21日 19:27
回复 0
|
赞 1
|
浏览 2.9k
删除字符串中的某些连续字符
#include <iostream> #include <string> using namespace std; int main() { string s,m="gzu",res=""; cin>>s; for(int i=0,j...
P1026
2023年3月21日 16:40
回复 0
|
赞 0
|
浏览 2.6k
m进制转n进制
#include <iostream> #include <string> using namespace std; string Sul(string a, int m, int n) { long long sum = 0; string res ...
P1422
2023年3月21日 16:24
回复 0
|
赞 1
|
浏览 2.8k
各个大写字母数量统计
#include <iostream> #include <string> using namespace std; int main() { string s; while(getline(cin,s)){ int a[26]={0}; ...
P1292
2023年3月21日 15:12
回复 0
|
赞 1
|
浏览 2.1k
在数组a中查找若干个值
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ int *a=new int[n],m,temp; for(int i=0;i<n;...
P1388
2023年3月21日 11:24
回复 0
|
赞 0
|
浏览 2.4k
击鼓传花(约瑟夫环)
#include <iostream> using namespace std; //公式f(n,m)=(f(n-1,m)+m)%n int f2(int n, int m) { if (n == 1) return 0; return (f2(n - ...
P1018
2023年3月21日 11:17
回复 0
|
赞 1
|
浏览 3.0k
字符频率
#include <iostream> #include <string> using namespace std; int main() { string s; while (getline(cin, s)) { int a[26] = { 0...
P1019
2023年3月21日 10:10
回复 0
|
赞 1
|
浏览 3.0k
成绩分级
#include <iostream> using namespace std; int main() { int n; cin >> n; switch (n / 10) { case 10: cout << "A" &l...
P1038
2023年3月20日 21:15
回复 0
|
赞 0
|
浏览 2.3k
找到区间(1,n)内个位为1的素数
#include <iostream> using namespace std; int main() { int n; while (cin >> n) { int e = 0; for (int i = 1, j; i < n;...
P1375
2023年3月20日 19:57
回复 0
|
赞 0
|
浏览 2.6k
三数最大值(三目运算符的使用)
#include <iostream> using namespace std; int main() { int a,b,c; while (cin >> a>>b>>c) { int temp = a>b?a:...
P1036
2023年3月20日 19:32
回复 0
|
赞 0
|
浏览 2.8k
计算某个日期是该年的第几天
#include <iostream> using namespace std; typedef struct Data { int y, m, d; }dat; bool Jud(int year) { return (year % 4 == 0 &&...
P1051
2023年3月20日 16:04
回复 0
|
赞 0
|
浏览 2.7k
动态数组存储各个学生输入的书号
#include <iostream> using namespace std; int main() { int n, m; while(cin >> n >> m){ int* a = new int[n], * b = new i...
P1177
2023年3月20日 15:18
回复 0
|
赞 1
|
浏览 2.9k
边输入边插入单链表,简单插入排序
#include <iostream> using namespace std; struct Node { int Element; // 节点中的元素为整数类型 struct Node* Next; // 指向下一个节点 }; int main() { ...
P1015
2023年3月18日 20:48
回复 0
|
赞 0
|
浏览 3.5k
1
2
3
4
本科学校:郑州轻工业大学
目标学校:内蒙古大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!