Board logo

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

作者: 陳品肇    時間: 2019-7-6 00:30     標題: 時間換算機

將輸入的分鐘數, 換算成幾天幾小時幾分鐘. 程式執行參考畫面如下:
[attach]6825[/attach]
作者: 黃傳耀    時間: 2019-7-6 11:04

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

作者: 李易展    時間: 2019-7-6 11:18

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

作者: 陳宇柏    時間: 2019-7-6 11:22

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

作者: 邱楷宸    時間: 2019-7-20 10:05

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

作者: 王建葦    時間: 2019-7-20 10:06

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

作者: 謝蓮金    時間: 2019-7-20 13:17

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





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