码迷,mamicode.com
首页 > 其他好文 > 详细

大数相加

时间:2017-07-17 13:40:53      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:string   include   str   大数相加   ring   using   out   bsp   cas   

 

 

#include<iostream>
#include<string.h>
using namespace std;
int main()
{
    char a[1100],b[1100];
    int t,lena,lenb,k,y,i,j;
    cin>>t;
    for (int m=1;m<=t;m++)
    {
        int c[1200]={0};
        cout << "Case " << m << ":" << endl;
        cin>>a>>b;
        k=0;
        lena=strlen(a);
        lenb=strlen(b);

        cout << a << " + " << b << " = " ;
        for (i=lena-1,j=lenb-1;i>=0&&j>=0;i--,j--)
        {
            y=a[i]-‘0‘+b[j]-‘0‘;
            if (y+c[k]>=10)
            {
                 c[k+1]++;
                 c[k]+=y-10;
            }
             else
                c[k]=c[k]+y;
                k++;
        }
      if (k<lena)
      {
          for (int x=i;x>=0;x--)
          {
               c[k]+=a[x]-‘0‘;
               k++;

          }
      }
      else if (k<lenb)
      {
          for (int x=j;x>=0;x--)
          {
               c[k]+=b[x]-‘0‘;
               k++;
          }
      }
      else if (c[k]!=0)
         k++;
      for (int z=k-1;z>=0;z--)
           cout << c[z] ;
           cout << endl;
      if (m!=t)
            cout << endl ;

    }
    return 0;
}

 

大数相加

标签:string   include   str   大数相加   ring   using   out   bsp   cas   

原文地址:http://www.cnblogs.com/lisijie/p/7193795.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!