返回列表 發帖

時間換算機 (二)

本帖最後由 許婷芳 於 2019-11-22 21:06 編輯

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

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

此帖僅作者可見
林祐霆

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表