摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1047题目意思:就是求大整数加法。有多个案例,每个案例之间要输出一个空格。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 const int maxn = 10000 + 10; 8 char t[maxn]; 9 int s[maxn], ans[maxn];10 11 int main()12 {13 int l1, l2, n, i, j, l, len, num;14 s... 阅读全文
posted @ 2014-04-03 22:06 windysai 阅读(211) 评论(0) 推荐(0) 编辑