返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int a,b,c;
  4. string str1,str2;
  5. int main()
  6. {
  7.    getline(cin,str1);
  8.    a=stoi(str1, nullptr, 2);
  9.    getline(cin,str2);
  10.    b=stoi(str2, nullptr, 2);
  11.    c=a+b;
  12.    cout<<a<<" + "<<b<<" = "<<c<<endl;
  13.    if(c>255)
  14.     cout<<"11111111";
  15.    else
  16.     cout<<bitset<8>(c);
  17. }
複製代碼

TOP

返回列表