主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
A1120161820
这个人很懒,什么都没有写。。。
关注
发消息
文章
0
题解
84
发帖
0
笔记
0
Ta的粉丝
408
关注数
2
粉丝数
408
获赞数
33
阅读数
867582
01序列(c++)(栈)
/* 对于长度为6位的一个01串,每一位都可能是0或1,一共有64种可能。它的前几个是: 000000 000001 000010 000011 000100 请按从小到大的顺序输出这64种01串。 */ #include<iostream> #inclu...
P1001
2020年3月18日 10:07
回复 0
|
赞 0
|
浏览 11.8k
反序相等(c++)
#include<iostream> using namespace std; int main() { for (int num = 1000; num <= 9999; num++) { int a = num/1000; int b = (nu...
P1461
2020年3月9日 10:16
回复 0
|
赞 0
|
浏览 8.6k
完数与盈数(c++)
注意输出格式 #include<iostream> #include<vector> using namespace std; int main() { vector<int> ve; vector<int> vg; ...
P1460
2020年3月9日 10:10
回复 0
|
赞 0
|
浏览 7.6k
加法等式(c++)
#include<iostream> using namespace std; int main() { for (int num = 100; num < 532; num++) { int a = num/100; int b = (num%10...
P1459
2020年3月9日 09:58
回复 0
|
赞 0
|
浏览 7.9k
单词识别(c++)
#include<iostream> #include<string> #include<cstring> #include<map> #include<algorithm> using namespace std; ...
P1452
2020年3月9日 09:52
回复 0
|
赞 1
|
浏览 10.9k
分组统计(c++)
#include<iostream> #include<cstdlib> using namespace std; int main() { int m; cin >> m; while (m--) { int n; ci...
P1448
2020年3月8日 11:19
回复 0
|
赞 0
|
浏览 8.3k
编排字符串(c++)
#include<iostream> #include<string> #include<vector> using namespace std; int main() { int m; vector<string> vst...
P1447
2020年3月8日 10:29
回复 1
|
赞 1
|
浏览 8.8k
直角三角形(c++)
个人感觉这题有点问题,标准答案似乎忘记判断这个三角形是否满足任意两边之和大于第三边 #include<iostream> #include<cstdio> #include<cmath> using namespace std; class...
P1445
2020年3月7日 11:19
回复 1
|
赞 0
|
浏览 14.6k
点的距离(c++)
#include<iostream> #include<cstdio> #include<cmath> using namespace std; class CPoint{ private: int x, y; public: CPo...
P1444
2020年3月7日 10:40
回复 0
|
赞 0
|
浏览 7.4k
弹地小球(c++)
#include<iostream> #include<cstdio> #include<cmath> using namespace std; double fun(int n) { if (n == 1) return 1; ...
P1443
2020年3月7日 10:27
回复 0
|
赞 0
|
浏览 6.8k
三角形相加(c++)
#include<iostream> using namespace std; class CTriangle{ private: int x, y; public: CTriangle(){} CTriangle(int xx, int yy):x(xx)...
P1442
2020年3月7日 10:20
回复 0
|
赞 1
|
浏览 10.4k
整型存储(c++)
#include<iostream> #include<vector> using namespace std; class number{ private: int num; int rev_num; public: number(){} ...
P1440
2020年3月7日 10:03
回复 1
|
赞 1
|
浏览 8.6k
判断数字位置(c++)
#include<iostream> #include<vector> #include<string> using namespace std; int main() { int m, i; cin >> m; whi...
P1439
2020年3月7日 09:46
回复 0
|
赞 0
|
浏览 9.1k
复数相加(c++)
#include<iostream> using namespace std; class complex{ private: int a, b; public: complex(){} complex(int aa, int bb):a(aa),b(bb)...
P1438
2020年3月6日 16:42
回复 0
|
赞 0
|
浏览 7.2k
多项式的值(c++)
#include<iostream> #include<vector> using namespace std; class poly{ private: vector<int> vint; int x; int N; int a...
P1436
2020年3月6日 16:05
回复 0
|
赞 0
|
浏览 6.7k
一元二次方程(c++)
#include<iostream> #include<cstdio> #include<cmath> using namespace std; class equation{ private: int a, b, c; public: ...
P1435
2020年3月6日 15:43
回复 0
|
赞 0
|
浏览 9.9k
重载运算符(c++)
#include<iostream> #include<cstdio> #include<cmath> using namespace std; const double PI = 3.1415926535; class angle{ pri...
P1434
2020年3月6日 15:19
回复 0
|
赞 0
|
浏览 7.2k
计算天数(c++)
#include<iostream> using namespace std; int days[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; bool add_day(int y) { if (y...
P1433
2020年3月6日 14:45
回复 0
|
赞 0
|
浏览 7.7k
学生查询(c++)
#include<iostream> #include<string> #include<vector> using namespace std; typedef struct node{ int num; string name; ...
P1432
2020年3月6日 11:14
回复 0
|
赞 0
|
浏览 9.1k
球的计算(c++)
#include<iostream> #include<cstdio> #include<cmath> using namespace std; const double PI = 3.14159265; int main() { int...
P1431
2020年3月6日 11:04
回复 0
|
赞 0
|
浏览 6.7k
1
2
3
4
5
本科学校:北京理工大学
目标学校:北京理工大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!