#include <iostream>
using namespace std;
string addBinary(string a, string b){
string res;
int carry = 0; // 进位
int i = a.size() - 1;
int j = b.size() - 1;
while(i >= 0 || j >= 0 || carry != 0){
int A = i >= 0 ? a[i--] - '0' : 0;
int B = i >= 0 ? b[j--] - '0' : 0;
int sum = A + B + carry;
carry = sum / 2;
res = to_string(sum % 2) + res;
}
return res;
}
int main(){
string a,b;
cin >> a >> b;
cout << addBinary(a, b) << endl;
}
© 版权声明
文章版权归作者所有,请勿转载至任何平台。
THE END
暂无评论内容