返回列表 發帖

702 二進位轉十進位

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

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

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

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

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

範例輸入
1100
範例輸出
12

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

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表