Board logo

標題: 508 二進位運算 [打印本頁]

作者: 陳曜誌    時間: 2024-12-8 13:43     標題: 508 二進位運算

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一個程式,讓使用者輸入兩個8位元的二進位字串,分別輸出兩字串以十進位、二進位相加的結果,若二進位相加超出位元顯示範圍,皆以「11111111」表示。

提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
兩個二進位字串

輸出說明
兩字串以十進位、二進位相加的結果

範例輸入1
11001100
00010010

範例輸出1
204 + 18 = 222
11011110


範例輸入2
11111011
10010011

範例輸出2
251 + 147 = 398
11111111


本帖隱藏的內容需要回復才可以瀏覽

作者: 侯宣任    時間: 昨天 20:22

  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. }
複製代碼

作者: 李彣    時間: 昨天 20:24

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

作者: 曾善勤    時間: 昨天 20:24

  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. }
複製代碼

作者: 林劭杰    時間: 昨天 20:24

  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. }
複製代碼

作者: 黃裕恩    時間: 昨天 20:28

  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,s1);
  8.    a=stoi(s1,nullptr,2);
  9.     getline(cin,s2);
  10.    b=stoi(s2,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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2