主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Hegel
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
79
发帖
0
笔记
4
Ta的粉丝
221
关注数
2
粉丝数
221
获赞数
46
阅读数
198278
简单背包问题,采用贪心枚举法,欢迎指正
#include <iostream> using namespace std; int main() { int sum, n; while (cin >> sum >> n) { int* a = new int[n]; fo...
P1035
2023年3月28日 14:44
回复 1
|
赞 1
|
浏览 2.1k
求小于n的数中,哪个数的因子和(不包括1和它本身)等于它自己
#include <iostream> using namespace std; int main() { int n; cin >> n; for (int i = 2, sum = 1; i < n; i++, sum = 1) { ...
P1046
2023年3月29日 16:48
回复 0
|
赞 0
|
浏览 2.0k
对n个数排序(冒泡排序)
#include <iostream> using namespace std; int main() { int n; cin>>n; int *a=new int[n]; for(int i=0;i<n;i++) cin>&...
P1399
2023年3月29日 16:34
回复 0
|
赞 0
|
浏览 2.1k
求若干个数的最大值与最小值和最大值与最小值的最大公约数
#include <iostream> using namespace std; #define INT_MAX 99999999 #define INT_MIN -99999999 int Gcd(int a,int b){ if(a<b) swap(...
P1426
2023年3月29日 15:14
回复 0
|
赞 1
|
浏览 2.0k
输入字符串s1与s2,比较字符串s2是否为字符串s1变换而来
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; for (int i = 0; i < n; i++...
P1032
2023年3月28日 21:12
回复 0
|
赞 1
|
浏览 1.9k
大整数排序
#include <iostream> #include <string> using namespace std; int Comp(string a1, string a2) { if (a1.size() != a2.size()) retur...
P1412
2023年3月28日 20:40
回复 0
|
赞 1
|
浏览 2.0k
翻转矩阵
#include <iostream> using namespace std; int main() { int n; cin >> n; int** a = new int* [n]; for (int i = 0; i < n; i+...
P1134
2023年3月28日 20:15
回复 0
|
赞 1
|
浏览 2.0k
求四位数,它的9倍正好是它的反序数
#include <iostream> using namespace std; int main(){ for(int i=1000;i<=9999;i++){ int temp=i,re=0; while(temp>0){ re=re...
P1461
2023年3月28日 19:47
回复 0
|
赞 0
|
浏览 1.9k
反序输出字符串
#include <iostream> #include <string> using namespace std; int main() { string s; while(getline(cin,s)){ for(int i=s.size()...
P1155
2023年3月28日 19:42
回复 0
|
赞 0
|
浏览 1.8k
F(n)=1,n==0||n==1;F(n)=2,n==2;F(n)=F(n-1)+F(n-2)+F(n-3),n>2
#include <iostream> using namespace std; int main() { int n; long long a[71]; while (cin >> n) { for (int i = 0; i <= n...
P1111
2023年3月28日 19:40
回复 0
|
赞 0
|
浏览 2.0k
计算函数
#include <iostream> using namespace std; int Fun(int x){ if(x<1) return x; if(x>=1&&x<10) return 2*x-1; if(x...
P1037
2023年3月28日 19:25
回复 0
|
赞 0
|
浏览 1.5k
有n元去买xyz只价格分别为5、3、1/3元的鸡100只,问xyz的值
#include <iostream> using namespace std; int main() { float n; while(cin>>n){ for(int i=0;3*n-100-14*i>=0;i++) for(in...
P1348
2023年3月28日 19:21
回复 0
|
赞 1
|
浏览 2.2k
使用cin后立即使用getline会造成的问题
#include <iostream> #include <string> using namespace std; void BubbleSort(string* a, int n) { for (int i = 0, flag = 0; i <...
P1261
2023年3月28日 17:11
回复 0
|
赞 1
|
浏览 2.4k
求一个不超过五位数的位数,输出各位数字再逆序输出各位数字
#include <iostream> using namespace std; int main() { int n,a[5],len=0; cin>>n; while(n>0){ a[len++]=n%10; n/=10; ...
P1039
2023年3月28日 15:44
回复 0
|
赞 0
|
浏览 2.0k
吃糖果方案,n个糖果可以一天吃1或2个,问有几种吃法
#include <iostream> using namespace std; int Fib(int n){ if(n<=2) return n; return Fib(n-1)+Fib(n-2); } int main() { int n;...
P1197
2023年3月28日 14:55
回复 0
|
赞 1
|
浏览 2.8k
约瑟夫环,输出各个被选中的序号,循环链表
#include <iostream> using namespace std; typedef struct Node { int data; struct Node* next; }Node, * List; int main() { int n, s,...
P1081
2023年3月28日 10:31
回复 0
|
赞 1
|
浏览 2.1k
输出字符串s1内的各个字符在字符串s2中出现的次数
#include <iostream> #include <string> using namespace std; int main() { string s1, s2; while (getline(cin, s1)&&getlin...
P1320
2023年3月27日 20:48
回复 0
|
赞 0
|
浏览 2.5k
日期累加
#include <iostream> using namespace std; typedef struct dat { int y, m, d; }dat; bool IsR(int year) { return (year % 4 == 0 &&a...
P1446
2023年3月27日 20:18
回复 0
|
赞 1
|
浏览 2.4k
输入字符串s,按照字典顺序输出它的所有子字符串
#include <iostream> #include <string> using namespace std; //s1在字典里的顺序早于s2时输出小于0 int Comp(string s1, string s2) { int i, j; f...
P1294
2023年3月27日 19:18
回复 0
|
赞 0
|
浏览 2.1k
分数序列求和
#include <iostream> using namespace std; int main() { float n, sum = 0, m = 1, c = 2; cin >> n; for (int i = 0; i < n; i++...
P1047
2023年3月25日 17:08
回复 0
|
赞 0
|
浏览 2.0k
1
2
3
4
本科学校:郑州轻工业大学
目标学校:内蒙古大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!