Board logo

標題: 時間換算機 [打印本頁]

作者: 鄭繼威    時間: 2022-9-30 19:41     標題: 時間換算機

本帖最後由 鄭繼威 於 2022-10-5 19:56 編輯

將輸入的分鐘數, 換算成幾天幾小時幾分鐘.
程式執行參考畫面如下:



本帖隱藏的內容需要回復才可以瀏覽

作者: 林劭澧    時間: 2022-10-5 20:51

  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. }
複製代碼

作者: 林劭杰    時間: 2022-10-5 20:52

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

作者: 黃柏青    時間: 2022-10-5 20:53

  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. }                        
複製代碼

作者: 黃裕恩    時間: 2022-10-5 20:59

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int time;
  7.     cout<<"請輸入你想換算的分鐘數";
  8.     cin>>time;
  9.     if(time>=1440){   
  10.         cout<<time/1440<<"天";
  11.         time%=1440;
  12.     }
  13.     if(time>=60){
  14.         cout<<time/60<<"時";
  15.         time%=60;
  16.     }
  17.     cout<<time<<"分鐘";
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 李彣    時間: 2022-10-5 21:05

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2