摘要: #include #include int main(){ int x,y,z,a,b,c; while(scanf("%d %d %d",&x,&y,&z) !=EOF) { a=(z+x-2*y)/2; b=(4*y-3*x-z)/2; ... 阅读全文
posted @ 2015-06-16 18:20 Gabyler 阅读(147) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a <= 168) { printf("CRASH %d\n",a); return 0; } ... 阅读全文
posted @ 2015-06-16 17:14 Gabyler 阅读(121) 评论(0) 推荐(0) 编辑
摘要: #include #include int rever(int n) { return -n; } int main() { int n,m,p,c; while(scanf("%d %d %d %d"... 阅读全文
posted @ 2015-06-16 17:02 Gabyler 阅读(138) 评论(0) 推荐(0) 编辑
摘要: #include #include #includeint main(){ int i,j; char arr[60],str[] = {"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"}; while(gets(arr) != ... 阅读全文
posted @ 2015-06-16 17:01 Gabyler 阅读(148) 评论(0) 推荐(0) 编辑