返回列表 發帖
本帖最後由 洪勻蓁 於 2021-8-30 16:29 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, x=0;
  7.     int b[10];
  8.     cout<<"請輸入正整數: ";
  9.     cin>>a;
  10.     for(int i=0;i<10;i++)
  11.     {
  12.        if(a!=0)
  13.        {
  14.          b[i]=a%2;
  15.          a=a/2;
  16.          x++;      
  17.        }
  18.     }  
  19.     for(int i=x-1;i>=0;i--)
  20.     {
  21.          cout<<b[i];
  22.     }   
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a, b, ten=1, sum=0;
  8.     cout<<"請輸入正整數: ";
  9.     cin>>a;
  10.     cout<<a<<"的二進位為 ";
  11.     while(a>0)
  12.     {
  13.        b=a%2;
  14.        a=a/2;
  15.        sum+=b*ten;
  16.        ten=ten*10;     
  17.     }
  18.     cout<<sum<<endl;
  19.     goto re;
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

TOP

返回列表