摘要:
// HDOJ 2015 偶数求和 // @author: bos // @date: 2012.2.16 #include <stdio.h> int main() { int n, m; while(scanf("%d%d", &n, &m)!= EOF) { int i; int j= 0; 阅读全文
摘要:
// HDOJ 2007 平方和与立方和 // @author: bos // @date: 2012.2.16 #include int main() { long m, n; while(scanf("%ld%ld", &m, &n)!= EOF) { int t; if(m> n) {t= m; m= n; n= t;} long x= 0; long y= 0;... 阅读全文
摘要:
// 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( 阅读全文
摘要:
// 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 阅读全文