码迷,mamicode.com
首页 >  
搜索关键字:a10    ( 542个结果
PAT 甲级 A1001 (2019/02/10)
```C #include #include int main(){ long A, B, C, SUM; scanf("%ld%ld", &A, &B); SUM = A + B; C = abs(SUM); if(C = 1000 && C = 1000000) printf("%ld,%03l... ...
分类:其他好文   时间:2019-02-24 10:55:37    阅读次数:135
PAT 甲级 A1037 (2019/02/20)
```C++ #include #include using namespace std; const int MAXN = 100010; //段错误,数组开辟的太小 int a[MAXN], b[MAXN]; int main(){ int n1, n2; scanf("%d", &n1); f... ...
分类:其他好文   时间:2019-02-24 10:40:10    阅读次数:138
PAT 甲级 A1047 (2019/02/22)
```C++ include include include include using namespace std; const int MAXN = 40010; const int MAXC = 2510; vector Courses[MAXC]; char StuName[MAXN][5] ...
分类:其他好文   时间:2019-02-24 10:35:46    阅读次数:165
1027 Colors in Mars (20 分)
1027 Colors in Mars (20 分) People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represente ...
分类:其他好文   时间:2019-02-24 10:33:24    阅读次数:161
PAT 甲级 A1082 (2019/02/14)13/25
千万亿 百万亿 十万亿 万亿 千亿 百亿 十亿 亿 千万 百万 十万 万 千 百 十 个 234 134 034 34 24 14 04 4 23 13 03 3 2 1 0 8132 3456 8008 0898 ba Qian yi Bai san Shi er Wan san Qian si ...
分类:其他好文   时间:2019-02-24 10:29:03    阅读次数:270
1036 Boys vs Girls (25 分)
1036 Boys vs Girls (25 分) This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of al ...
分类:其他好文   时间:2019-02-24 00:57:06    阅读次数:167
雷神编码博客入口
不是一直做视频相关的工作,偶尔看看,经常找不到入口, 但是记住唯一一个名字“雷霄骅” https://blog.csdn.net/leixiaohua1020/article/details/44226355 ...
分类:其他好文   时间:2019-02-23 14:49:26    阅读次数:180
PAT 甲级 A1054 (2019/02/23)
1 #include 2 #include 3 using namespace std; 4 int main(){ 5 int m, n, element; 6 scanf("%d %d", &m, &n); // 行数与列数 7 map Count; // 数字与出现次数的map映射 8 for... ...
分类:其他好文   时间:2019-02-23 10:49:25    阅读次数:173
CentOS7安装定时任务
CentOS7使用cron和anacron用来定期重复执行指令1.服务安装1.1查看是否安装yum-cronrpm-qyum-cron1.2安装cronieyum-yinstallcronie1.3安装yum-cronyum-yinstallyum-cron1.4备注单独安装yum-cron也可以,因为yum会自动检测到yum-cron需要一来到cronie然后自动安装2.基本操作2.1启动sys
分类:其他好文   时间:2019-02-22 16:50:53    阅读次数:561
PAT 甲级 A1009 (2019/02/01)
1 #include 2 struct Poly{ 3 int exp; //次数 4 double coe; //系数 5 }A[1001]; 6 double Product[2001]; 7 int main(){ 8 int n1, n2, count = 0; 9 scanf... ...
分类:其他好文   时间:2019-02-21 23:09:09    阅读次数:170
542条   上一页 1 ... 12 13 14 15 16 ... 55 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!