Board logo

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

作者: 方浩葦    時間: 2024-6-1 09:30     標題: 702 二進位轉十進位

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

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

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

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

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

範例輸入
1100
範例輸出
12

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

作者: 楊惇翔    時間: 2024-6-1 20:28

  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-6-1 20:29

  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-6-1 20:30

  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-6-1 20:31

  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-6-1 20:33

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

作者: 博勛    時間: 2024-6-1 20:42

  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