#include <stdio.h>
#include <string.h>
#define MAX 200
int a[MAX],b[MAX],c[MAX];
char s1[MAX],s2[MAX];
int main()
{
gets(s1);
gets(s2);
int lens1,lens2;
lens1 = strlen(s1);
lens2 = strlen(s2);
a[0] = lens1;
for(int i = 1;i <= lens1;i++){
a[i] = s1[lens1-i] - '0';
}
b[0] = lens2;
for(int i = 1;i <= lens2;i++){
b[i] = s2[lens2-i] - '0';
}
int i = 0;
for(i = 1;i <= lens1 || i <= lens2;i++){
c[i] = c[i] + a[i] + b[i];
c[i + 1] += c[i] / 10;
c[i] %= 10;
}
while(i >= 1 && c[i] == 0){
i--;
}
c[0] = i;
for(int j = c[0]; j >= 1;j--){
printf("%d",c[j]);
}
return 0;
}
标签:s2,大数,int,MAX,s1,lens2,C语言,lens1,加法
From: https://www.cnblogs.com/linhongyu0090/p/17165825.html