返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     cout<<"請輸入想換算的分鐘數: ";
  8.     int mins;
  9.     cin>>mins;
  10.     cout<<mins<<"分鐘可換算為..."<<endl;
  11.     if(mins>=(60*24))
  12.     {
  13.             cout<<mins/(60*24)<<"天, ";
  14.             mins=mins%(60*24);
  15.         }
  16.         if(mins>=60)
  17.         {
  18.                 cout<<mins/60<<"小時, ";
  19.                 mins=mins%60;
  20.         }
  21.         if(mins>=1)
  22.         {
  23.                 cout<<mins<<"分鐘.";
  24.         }
  25.     cout<<endl;
  26.     goto re:
  27.     system("pause");
  28.     return 0;   
  29. }
複製代碼

TOP

返回列表