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

TOP

返回列表