上一页 1 ··· 4 5 6 7 8

2018年3月29日

摘要: Phone ListTime Limit: 2 Sec Memory Limit: 64 MBSubmit: 774 Solved: 149[Submit][Status][Discuss]DescriptionGiven a list of phone numb... 阅读全文
posted @ 2018-03-29 19:10 ~~晨阳 阅读(113) 评论(0) 推荐(0) 编辑

2018年3月26日

摘要: As the new term comes, the Ignatius Train Station is very busy nowadays. A lot of student want to get back to school by train(because ... 阅读全文
posted @ 2018-03-26 20:25 ~~晨阳 阅读(241) 评论(0) 推荐(0) 编辑

2018年3月24日

摘要: #include#include#include#include #define U 1#define D 2#define L 3 #define R 4 //蛇的状态,U:上 ;D:下;L:左 R:右 typedef struct SNAKE //蛇身的一个节点{... 阅读全文
posted @ 2018-03-24 22:37 ~~晨阳 阅读(134) 评论(0) 推荐(0) 编辑
 
摘要: #include"graphics.h"#include"time.h"#include"math.h"#include"dos.h"#include"conio.h"#define NULL 0#define False 0#define True 1#defin... 阅读全文
posted @ 2018-03-24 22:37 ~~晨阳 阅读(294) 评论(0) 推荐(0) 编辑
 
摘要: CalendarTime Limit: 1 Sec Memory Limit: 64 MBSubmit: 351 Solved: 124[Submit][Status][Discuss]DescriptionA calendar is a system for m... 阅读全文
posted @ 2018-03-24 22:34 ~~晨阳 阅读(155) 评论(0) 推荐(0) 编辑
 
摘要: int fast_pow(int a,int b,int c){ int ans=1; a%=c; while(b) { if(b&1) ans=a*ans%c; a=a*a%c; ... 阅读全文
posted @ 2018-03-24 22:31 ~~晨阳 阅读(87) 评论(0) 推荐(0) 编辑
 
摘要: #include int main(){ int a[11]={0},i,j,k,m,max; for(i=1;imax) { max=a[i]; m=i; } } pri... 阅读全文
posted @ 2018-03-24 22:31 ~~晨阳 阅读(104) 评论(0) 推荐(0) 编辑
 
摘要: #include int main(){ int a[1001]={0}; int i,j; for(i=2;i<=1000;i++) { if(a[i]==0) { for(j=i+i;j<=1... 阅读全文
posted @ 2018-03-24 22:29 ~~晨阳 阅读(138) 评论(0) 推荐(0) 编辑
 
摘要: sort 头文件 #include + using namespace std;1.一维数组排序#include#include#includeusing namespace std;bool cmp(int a,int b)//如果是double型... 阅读全文
posted @ 2018-03-24 22:28 ~~晨阳 阅读(105) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8