摘要: // HDOJ 2008 数值统计 // @author: bos // @date: 2012.2.16 #include <stdio.h> int main() { int n; double a[100]; int count1; int count2; int count3; while( 阅读全文
posted @ 2012-02-16 00:38 ibos 阅读(160) 评论(0) 推荐(0) 编辑
摘要: // HDOJ 2006 求奇数的成绩 // @author: bos // @date: 2012.2.16 #include <stdio.h> int main() { int n; int a[100000]; int result; while (scanf("%d", &n)!= EOF 阅读全文
posted @ 2012-02-16 00:27 ibos 阅读(174) 评论(0) 推荐(0) 编辑
摘要: // HDOJ 2101 A + B Problem Too // @author: bos // @date: 2012.2.14 #include <stdio.h> int main() { int a, b; while(scanf("%d%d", &a, &b)!= EOF) { if(( 阅读全文
posted @ 2012-02-14 16:04 ibos 阅读(167) 评论(0) 推荐(0) 编辑
摘要: // HDOJ 2001 计算两点间的距离 // @author: bos // @date: 2012.2.14 #include <stdio.h> #include <math.h> int main() { double x1, x2, y1, y2; while(scanf("%lf%lf 阅读全文
posted @ 2012-02-14 15:06 ibos 阅读(174) 评论(0) 推荐(0) 编辑
摘要: // HDOJ 2002 计算球体积 // @author: bos // @date: 2012.2.14 #define PI 3.1415927 #include <stdio.h> int main() { double r; while(scanf("%lf", &r)!= EOF) { 阅读全文
posted @ 2012-02-14 14:58 ibos 阅读(210) 评论(0) 推荐(0) 编辑
摘要: // HDOJ 2003 求绝对值 // @author: bos // @date: 2012.2.14 #include <stdio.h> int main() { double n; //需用double型才行 while(scanf("%lf", &n)!= EOF) { printf(" 阅读全文
posted @ 2012-02-14 14:50 ibos 阅读(184) 评论(0) 推荐(0) 编辑
摘要: // HDOJ 2046 骨牌铺方格 // @author: bos // @date: 2012.2.13 #include <stdio.h> int main() { int n; int i; _int64 result[51]= {0}; result[1]= 1; result[2]= 阅读全文
posted @ 2012-02-14 00:46 ibos 阅读(186) 评论(0) 推荐(0) 编辑
摘要: // HDOJ 2018 母牛的故事 // @author: bos // @date: 2012.2.13 #include <stdio.h> int main() { int n; int i; int result[55]; result[1]= 1; result[2]= 2; resul 阅读全文
posted @ 2012-02-14 00:45 ibos 阅读(217) 评论(0) 推荐(0) 编辑
摘要: // HDOJ 1465 不容易系列之一 // @author: bos // @date: 2012.2.9 //错排问题 #include #include int main() { int n; _int64 f[21]= {0}; //注意这里用到C++的扩展类型_int64,表示范围更大,关于它 while(scanf("%d", &n)!= EOF) //跟long... 阅读全文
posted @ 2012-02-09 04:20 ibos 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 2012-02-06 16:31:10 阅读全文
posted @ 2012-02-06 16:32 ibos 阅读(219) 评论(0) 推荐(1) 编辑