题解
2023-08-15 15:32:17
发布于:浙江
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int n[114514],n1[114514],c[114514];
int main(){
string a,b;
cin>>a>>b;
reverse(a.begin(),a.end());
reverse(b.begin(),b.end());
int len=max(a.size(),b.size());
for(int i=0;i<a.size();i++){
n[i]=a[i]-'0';
}
for(int i=0;i<b.size();i++){
n1[i]=b[i]-'0';
}
int m=0;
for(int i=0;i<max(a.size(),b.size());i++){
c[i]+=n[i]+n1[i];
m++;
if(c[i]>=10){
c[i]-=10;
c[i+1]++;
}
}
m--;
if(c[len]!=0)m++;
for(int i=m;i>=0;i--){
cout<<c[i];
}
return 0;
}
这里空空如也
有帮助,赞一个