Board logo

標題: [作業] 時間換算機 (二) [打印本頁]

作者: 方浩葦    時間: 2024-5-10 19:16     標題: [作業] 時間換算機 (二)

將輸入的秒數, 換算成幾週, 幾天, 幾小時, 幾分鐘, 幾秒.



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

作者: 鄭豊翰    時間: 2024-6-22 09:42

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {     
  6.     int a, temp, weeks, days, hours, minutes;
  7.     cout<<"請輸入您要換算的數字:";
  8.     cin>>a;
  9.    
  10.     weeks=a/604800;
  11.     cout<<weeks<<" Weeks,";
  12.    
  13.     temp=a-(weeks*7*24*60*60);
  14.     days=temp/86400;
  15.     cout<<days<<" Days,";
  16.    
  17.     temp=temp-(days*24*60*60);
  18.     hours=temp/3600;
  19.     cout<<hours<<" Hours,";
  20.    
  21.     temp=temp-(hours*60*60);
  22.     minutes=temp/60;
  23.     cout<<minutes<<" Minutes,";
  24.    
  25.     temp=temp-(minutes*60);
  26.     cout<<temp<<" Seconds"<<endl<<endl;;
  27.     system("pause");
  28.     return 0;   
  29. }
複製代碼





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