| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 725 人关注过本帖
标题:杭电1002
只看楼主 加入收藏
Susake
Rank: 15Rank: 15Rank: 15Rank: 15Rank: 15
来 自:女儿国的隔壁
等 级:贵宾
威 望:23
帖 子:2288
专家分:6481
注 册:2012-12-14
收藏
得分:0 
今天想起了这题,然后做了一遍
程序代码:
#include <stdio.h>
#include <string.h>
#define N 1000 + 10

int main() {
    int a[N] = {0}, b[N] = {0}, i, j, len, len1, len2, n, t;
    char s1[N], s2[N];
    scanf("%d", &n);
    for(t = 1; t <= n; t++) {
        if(t > 1) printf("\n");
        scanf("%s%s", s1, s2);
        len1 = strlen(s1);
        len2 = strlen(s2);
        for(i = len1 - 1, j = 0; i >= 0; i--) a[j++] = s1[i] - '0';
        for(i = len2 - 1, j = 0; i >= 0; i--) b[j++] = s2[i] - '0';
        len = len1 > len2 ? len1 : len2;
        for(i = 0; i < len; i++) {
            a[i] += b[i];
            if(a[i] >= 10) {
                a[i] %= 10;
                a[i+1]++;
            }
        }
        printf("Case %d:\n", t);
        if(a[len]) printf("%d", a[len]);
        printf("%s + %s = ", s1, s2);
        for(i = len - 1; i >= 0; i--) printf("%d", a[i]); printf("\n");
    }
    return 0;
}
为撒老是WA?,看了半天没看出来....大家帮忙看看吧......

仰望星空...........不忘初心!
2013-03-12 20:03
快速回复:杭电1002
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025055 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved