摘要:
// 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(( 阅读全文
摘要:
// 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 阅读全文
摘要:
// HDOJ 2002 计算球体积 // @author: bos // @date: 2012.2.14 #define PI 3.1415927 #include <stdio.h> int main() { double r; while(scanf("%lf", &r)!= EOF) { 阅读全文
摘要:
// HDOJ 2003 求绝对值 // @author: bos // @date: 2012.2.14 #include <stdio.h> int main() { double n; //需用double型才行 while(scanf("%lf", &n)!= EOF) { printf(" 阅读全文
摘要:
// 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]= 阅读全文
摘要:
// 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 阅读全文