2015年2月18日
摘要: #include#include#include#includeusing namespace std;int main(){ int n,other,hang; char p; scanf("%d %c",&n,&p); --n; if(n==0) printf("%c",p); ... 阅读全文
posted @ 2015-02-18 16:36 Evence 阅读(2355) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includeusing namespace std;int arr[100010];int main(){ memset(arr,0,sizeof(arr)); int n,len=0,max=0,maxI=0; scanf("%d",&n)... 阅读全文
posted @ 2015-02-18 15:47 Evence 阅读(477) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includeusing namespace std;struct STU{ char mname[10]; int y,m,d;}tmp,old,young,left,right; void init(){ old.y=right.y=201... 阅读全文
posted @ 2015-02-18 15:14 Evence 阅读(1585) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includeusing namespace std;typedef struct STU{ char mname[15]; char mID[15]; int mscore;}STU;bool cmp(STU a,STU b) ... 阅读全文
posted @ 2015-02-18 10:40 Evence 阅读(174) 评论(0) 推荐(0) 编辑
摘要: #include#include#include//【warning】double 输入%lf,输出%fstruct arr{ int exp; //指数 double cof; //系数}arr[1005];double ans[2010]; //下标是指数,内容是系... 阅读全文
posted @ 2015-02-18 10:20 Evence 阅读(146) 评论(0) 推荐(0) 编辑