任意输入两个正整数字符串s1,s2,输出s1和s2之和(大数相加拓展)

//输入两个正整数数字字符串,将这两个字符串转化并相加
//大数加法

#include
#include
#define M 100005
char s1[M],s2[M];
int a[M],b[M],c[M];
int main()
{
    int i,j,k,n,m;
    while(scanf("%s %s",s1,s2))
    {
        memset(c,0,sizeof(c));//给数组c全赋0 
        n=strlen(s1);
        m=strlen(s2);
        printf("s1的长度= %d s2的长度= %d\n",n,m);
 		// 把字符串s1和s2逆序用数字排列
        for(i=0; im) k=n;
        else k=m;
        for(i=0; i9)
            {
                c[i+1]++;
                c[i]%=10;
            }
        }
       //去除前导0
        i=k;
        while(c[i]==0) i--;
  	//判断两个非负数之和是否为0,以及逆序打印c[]
        if(i<0) printf("0");
        else
        {
            for(; i>=0; i--)
                printf("%d",c[i]);
        }
        printf("\n");
    }
    return 0;
}

你可能感兴趣的:(字符串)