返回列表 發帖

時間換算機

將輸入的分鐘數, 換算成幾天幾小時幾分鐘. 程式執行參考畫面如下:
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int time;
  7.     cout<<"幾分鐘?";
  8.     cin>>time;
  9.     cout<<"總共有"<<time/60/24<<"天"<<time/60%24<<"小時"<<time%60<<"分";  
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入分鐘:";
  8.     cin>>a;
  9.     cout<<a/1440<<"天"<<a%1440/60<<"小時"<<a%1440%60<<"分鐘"<<endl;
  10.     system("pause");
  11.     return 0;
  12.    
  13.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int time;
  7.     cout<<"請輸入想換算地分鐘數:";
  8.     cin>>time;
  9.     cout<<time<<"分鐘可換算為..."<<endl;
  10.     cout<<time/1440<<"天"<<(time%1440)/60<<"小時"<<time%1440%60<<"分鐘." ;
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int time ;
  7.     cout<<"請輸入你想要的分鐘數:";
  8.       cin>>time;
  9.       cout<<"總共有"<<time/60/24<<"天"<<time/60%24<<"小時"<<time%60<<"分";        
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       
  7.    int x;
  8.    cout<<"請輸入你想換算的分鐘數:";
  9.    cin>>x;
  10.    cout<<x<<"可換算為..."
  11.    cout<<x/60/24<<"天"<<x/60%24<<"小時"<<x%60<<"分";
  12.    system("pause");
  13.    return 0;
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     {
  8.         cout<<"請輸入一個時間:"<<endl;
  9.         cin>>a;
  10.         cout<<a/1440<<"天"<<a/60%24<<"小時"<<a%60<<"分";
  11.          
  12.     }
  13.       
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表