返回列表 發帖

時間換算機 (一)

本帖最後由 王瑞喻 於 2019-9-6 12:06 編輯

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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int hour;
  7.     cout<<"請輸入你想換算的小時數:";
  8.     cin>>hour;
  9.     cout<<hour<<"小時可換算為....:"<<endl;
  10.     cout<<hour/24<<"天,";
  11.     cout<<hour%24<<"小時."<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

返回列表