返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     re:
  8.     system("cls");
  9.     cout<<"請輸入一正整數:";
  10.     cin>>a;
  11.     if(a>0 && a%2==0)
  12.     {
  13.      b=a*5;
  14.     cout<<"該數字的二進位制為:"<<b<<endl;
  15.     }else if(a>0 && a%2>0)
  16.     {
  17.     b=(a-a%2)*5+a%2;
  18.     cout<<"該數字的二進位制為:"<<b<<endl;
  19.     }else
  20.     {
  21.     cout<<"!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?"<<endl;
  22.     }
  23.     system("pause");
  24.     goto re;
  25.      system("pause");
  26.      return 0;
  27. }
複製代碼

TOP

返回列表