摘要: 1001--Sum Problem(http://acm.hdu.edu.cn/showproblem.php?pid=1001)#include int sum(int n){ if(n % 2) return (n + 1) / 2 * n; else ... 阅读全文
posted @ 2014-04-05 19:50 wuyudong 阅读(439) 评论(0) 推荐(0) 编辑
Top_arrow