返回列表 發帖

進位制轉換(二進制) 練習

本帖最後由 李泳霖 於 2023-12-30 14:07 編輯
  1. #include<iostream>
  2. #include<bitset>
  3. using namespace std;
  4. int main()
  5. {
  6.     string s="108";
  7.     int a=stoi(s);  //字串轉整數
  8.     string b=bitset<8>(a).to_string();   //整數轉二進制字串
  9.     cout<<b<<endl;
  10.     int c=stoi(b,nullptr,2);   //二進制字串轉整數
  11.     cout<<c<<endl;
  12.     return 0;
  13. }
複製代碼
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     string s="8";
  6.     int a=stoi(s);
  7.     string b =bitset<8>(8).to_string();
  8.     cout<<b<<endl;
  9.     int c=stoi(b,nullptr,2);
  10.     cout<<c<<endl;
  11.     return 0;
  12. }
複製代碼
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string str;
  4. int i=108;
  5. stringstream ss;
  6. void reset()
  7. {
  8.     ss.clear();
  9.     ss.str("");
  10. }
  11. int main()
  12. {
  13.     ss<<i;
  14.     ss>>str;
  15.     cout<<str<<endl;
  16.     reset();

  17.     ss<<bitset<8>(i);
  18.     ss>>str;
  19.     cout<<str<<endl;
  20.     return 0;
  21. }
複製代碼
istak.teach2@gmail.com

此帖僅作者可見

TOP

返回列表