NBUOJ1451

#include<stdio.h>
#include<string.h>
int main()
{
    
    int a[22] = { 0 }, b[ 22 ] = { 0 };
    int i, j, lensa, lensb, len, c, count ;
    char sa[22], sb[22];
    scanf("%s%s",&sa,&sb);
    while (sa[0] != '0'||sb[0]!='0')
    {
        lensa = strlen(sa); lensb = strlen(sb);
        j = 0;
        for (i = lensa - 1; i >= 0; i--)
            a[j++] = sa[i] - '0';
        j = 0;
        for (i = lensb - 1; i >= 0; i--)
            b[j++] = sb[i] - '0';
        j = 0;
        if (lensa >= lensb) len = lensa;
            else len = lensb;
        c = 0;
        count = 0;
        for (i = 0; i < len; i++)
        {
            a[i] = a[i] + b[i] + c;
            if (a[i] >= 10)
            {
                a[i] = a[i] % 10;
                c = 1;
                count++;
            }
            else
                c = 0;
        }
        if (c > 0)
        {
            a[len] = c;
            len++;
        }
        printf("%d carry operation(s)\n", count);
        count=0;
        scanf("%s%s", &sa, &sb);
        for(i=0;i<22;i++)
        {
            a[i]=0;
            b[i]=0;
        }
    }
    return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值