Board logo

標題: 702 二進位轉十進位 [打印本頁]

作者: 陳曜誌    時間: 2024-10-13 12:49     標題: 702 二進位轉十進位

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

2. 設計說明:
請撰寫一個程式,讓使用者輸入一個10字元以內的二進位字串,將其轉換成十進位並輸出。

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

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

輸出說明
轉換成十進位的結果

範例輸入
1100
範例輸出
12

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

作者: 田家齊    時間: 2024-10-18 19:36

  1. #include <bits/stdc++.h>

  2. using namespace std;
  3. string str;
  4. int main()
  5. {
  6.     cin>>str;
  7.     cout<<stoi(str,nullptr,2);
  8.     return 0;
  9. }
複製代碼

作者: 聿均    時間: 2024-10-18 19:37

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     string str;
  6.     cin>>str;
  7.     cout<<stoi(str,nullptr,2);
  8.     return 0;
  9. }
複製代碼

作者: 黃翊豪    時間: 2024-10-18 19:37

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string str;
  4. int main()
  5. {
  6.     cin>>str;
  7.     cout<<stoi(str,nullptr,2);
  8.     return 0;
  9. }
複製代碼

作者: 何權晉    時間: 2024-10-25 19:07

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     string str;
  6.     cin>>str;
  7.     cout<<stoi(str,nullptr,2);

  8.     return 0;
  9. }
複製代碼

作者: 蔡沛倢    時間: 2024-10-25 19:19

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string str;
  4. int main()
  5. {
  6.     cin>>str;
  7.     cout<<stoi(str,nullptr,2);
  8.     return 0;
  9. }
複製代碼

作者: 郭又瑄    時間: 2024-10-25 20:09

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string str;
  4. int main()
  5. {
  6.     cin>>str;
  7.     cout<<stoi(str,nullptr,2);
  8.     return 0;
  9. }
複製代碼





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