此题代码
2023-08-15 08:50:04
发布于:四川
12阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
string a, b;
deque<int> q;
int main(){
cin >> a >> b;
int i = a.size();
int j = b.size();
int t = 0;
while(i+j > 0){
if(i > 0)t += (a[--i] - '0');
if(j > 0)t += (b[--j] - '0');
q.push_front(t % 10);
t /= 10;
}
if(t)cout << 1;
for(auto i : q)cout << i;
return 0;
}
全部评论 3
Em-------------
2023-08-15 来自 四川
1Em-------------
2023-08-15 来自 四川
0Em-------------
2023-08-15 来自 四川
0SD KFAJS F
2023-08-15 来自 四川
0
@任飞宇
2023-08-15 来自 四川
0范德萨发范德萨
2023-08-15 来自 四川
0
有帮助,赞一个