Board logo

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

作者: 王瑞喻    時間: 2019-9-6 11:54     標題: 時間換算機 (一)

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

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

[attach]7068[/attach]
  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. }
複製代碼

作者: 駱顗安    時間: 2020-7-9 17:25

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





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