主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
A1120161820
这个人很懒,什么都没有写。。。
关注
发消息
文章
0
题解
84
发帖
0
笔记
0
Ta的粉丝
408
关注数
2
粉丝数
408
获赞数
33
阅读数
867566
计算Sn(c++)
注意使用long long #include<iostream> using namespace std; int main() { int a, n; cin >> a >> n; long long ans = 0, num ...
P1043
2020年3月25日 11:26
回复 0
|
赞 1
|
浏览 10.6k
字符个数(c++)
#include<iostream> #include<cstring> using namespace std; const int M = 1024; int main() { char line[M]; cin.getline(line, M...
P1042
2020年3月25日 11:18
回复 0
|
赞 0
|
浏览 9.7k
最大公约数和最小公倍数(c++)
辗转相除法 #include<iostream> using namespace std; int main() { int m, n; cin >> m >> n; int a, b; if (m > n)...
P1041
2020年3月25日 11:11
回复 0
|
赞 0
|
浏览 8.7k
利润提成(c++)
#include<iostream> using namespace std; int main() { int num; cin >> num; if (num <= 100000) cout << num*0.1 <...
P1040
2020年3月25日 11:04
回复 0
|
赞 1
|
浏览 13.0k
逆序数(c++)
#include<iostream> #include<vector> using namespace std; int main() { int num; cin >> num; vector<int> vct; w...
P1039
2020年3月25日 10:51
回复 0
|
赞 0
|
浏览 9.6k
成绩的等级(c++)
#include<iostream> using namespace std; int main() { int x; cin >> x; if (x >= 90 && x <= 100) cout <<...
P1038
2020年3月25日 10:44
回复 0
|
赞 0
|
浏览 9.0k
计算函数(c++)
#include<iostream> using namespace std; int main() { int x; cin >> x; if (x < 1) cout << x << endl; else...
P1037
2020年3月25日 10:40
回复 0
|
赞 0
|
浏览 9.3k
三个数的最大值(c++)
#include<iostream> using namespace std; int main() { int a, b, c, ans; cin >> a >> b >> c; ans = a; if (b >...
P1036
2020年3月25日 10:37
回复 0
|
赞 0
|
浏览 10.7k
简单背包问题(c++)
注意:有多组测试用例 #include<iostream> #include<cstring> using namespace std; int main() { int s, n; while (cin >> s >>...
P1035
2020年3月25日 10:34
回复 0
|
赞 0
|
浏览 14.9k
水仙花数(c++)
#include<iostream> using namespace std; bool fun(int num) { int a = num/100; int b = (num%100)/10; int c = num%10; int tmp = a*a...
P1034
2020年3月24日 15:48
回复 0
|
赞 0
|
浏览 12.1k
变位词(c++)
#include<iostream> #include<cstring> #include<cstdlib> using namespace std; int cmp(const void* a, const void* b) { retu...
P1032
2020年3月24日 11:21
回复 0
|
赞 0
|
浏览 12.7k
判断是否是整数(c++)
#include<iostream> #include<string> using namespace std; int main() { string s; while (cin >> s) { bool flag = true;...
P1031
2020年3月24日 10:59
回复 0
|
赞 1
|
浏览 9.5k
钻石(c++)
欧拉定理(欧拉公式) V + F - E = 2 (简单多面体的顶点数 V,棱数 E和面数 F)。 多面体的顶点个数V = 面数F × 2 - 4; 多面体的棱的条数E = 面数F × 3 - 6; #include<iostream&...
P1030
2020年3月24日 10:43
回复 0
|
赞 1
|
浏览 8.9k
骨牌铺方格(c++)
经分析,本题存在递推公式:dp[i] = dp[i-1] + dp[i-2] + dp[i-3]; 初始值:dp[1] = 1, dp[2] = 2, dp[3] = 4; 注意使用数据类型long long 可以通过剪枝来降低时间复杂度 #include<i...
P1029
2020年3月24日 10:27
回复 0
|
赞 0
|
浏览 10.2k
T和Y的计划(c++)
#include<iostream> #include<cstdio> #include<cmath> #include<vector> using namespace std; typedef struct Node{ dou...
P1028
2020年3月23日 11:05
回复 1
|
赞 1
|
浏览 8.6k
删除字符串2(c++)
#include<iostream> #include<string> using namespace std; int main() { string s1, s2 = ""; cin >> s1; int i = 0; whi...
P1027
2020年3月23日 10:45
回复 0
|
赞 0
|
浏览 8.9k
删除字符串(c++)
#include<iostream> #include<string> using namespace std; int main() { string s1, s2 = ""; cin >> s1; int i = 0; whi...
P1026
2020年3月23日 10:33
回复 0
|
赞 0
|
浏览 9.7k
链表合并(c++)
#include<iostream> using namespace std; typedef struct Node{ int number; struct Node* next; }LNode; int main() { int s1, s2, x; ...
P1025
2020年3月23日 10:18
回复 0
|
赞 0
|
浏览 11.9k
二元组整数(c++)
特殊情况: 输入: 5 2 1 3 1 2 输出: (1,1) (1,2) (1,3) (2,1) (2,2) (2,3) (3,1) (3,2) 代码: #include<iostream> #include&...
P1024
2020年3月23日 09:48
回复 0
|
赞 0
|
浏览 13.4k
IP地址(c++)
注意输出格式:十六进制不足两位要补零 #include<iostream> #include<cstring> #include<cstdlib> using namespace std; const int M = 1024; int ...
P1023
2020年3月22日 10:15
回复 0
|
赞 0
|
浏览 11.6k
1
2
3
4
5
本科学校:北京理工大学
目标学校:北京理工大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!