上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页
摘要: /* * ===================================================================================== * * Filename: prime_factor.c * * Description: 求质因... 阅读全文
posted @ 2013-11-19 14:23 海滨银枪小霸王 阅读(159) 评论(0) 推荐(0) 编辑
摘要: /* * ===================================================================================== * * Filename: hdu2098.c * Version: 1.0 * ... 阅读全文
posted @ 2013-11-18 23:14 海滨银枪小霸王 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 这段代码是引用的,对scanf()运用比较熟练才行#include int main(){ int n, a; char c; scanf("%d%*c", &n); while (n-- && scanf("%c%d%*c", &c, &a)) printf("%d\n", a + (c int... 阅读全文
posted @ 2013-11-17 23:12 海滨银枪小霸王 阅读(122) 评论(0) 推荐(0) 编辑
摘要: /* * ===================================================================================== * * Filename: hdu2053.c * * Description: * * ... 阅读全文
posted @ 2013-11-17 22:25 海滨银枪小霸王 阅读(122) 评论(0) 推荐(0) 编辑
摘要: /* * ===================================================================================== * * Filename: hdu2052.c * * Description: * * ... 阅读全文
posted @ 2013-11-17 21:56 海滨银枪小霸王 阅读(172) 评论(0) 推荐(0) 编辑
摘要: #include int main() { int n; int a[11]; int len; while(~scanf("%d",&n)) { len = 0; while(n!=0) { ... 阅读全文
posted @ 2013-11-17 21:31 海滨银枪小霸王 阅读(141) 评论(0) 推荐(0) 编辑
摘要: /* * ===================================================================================== * * Filename: hdu2049.c * * Description: * * ... 阅读全文
posted @ 2013-11-17 21:13 海滨银枪小霸王 阅读(250) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ int dp[40][2]; dp[1][0] = 1; dp[1][1] = 2; int i; for(i=2;i<40;i++) { dp[i][0] = dp[i-1][1]; dp[... 阅读全文
posted @ 2013-11-17 03:29 海滨银枪小霸王 阅读(110) 评论(0) 推荐(0) 编辑
摘要: /* * ===================================================================================== * * Filename: hdu2568.c * * Description: * * ... 阅读全文
posted @ 2013-11-15 11:51 海滨银枪小霸王 阅读(169) 评论(0) 推荐(0) 编辑
摘要: /* * ===================================================================================== * * Filename: hdu2570.c * * Description: * * ... 阅读全文
posted @ 2013-11-15 11:42 海滨银枪小霸王 阅读(168) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页