標題:
時間換算機 (一)
[打印本頁]
作者:
王瑞喻
時間:
2019-9-6 11:54
標題:
時間換算機 (一)
本帖最後由 王瑞喻 於 2019-9-6 12:06 編輯
將輸入的小時數, 換算成幾天幾小時.
程式執行參考畫面如下:
[attach]7068[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int hour;
cout<<"請輸入你想換算的小時數:";
cin>>hour;
cout<<hour<<"小時可換算為....:"<<endl;
cout<<hour/24<<"天,";
cout<<hour%24<<"小時."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-7-9 17:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z;
cout<<"請輸入你想換算的小時數: ";
cin>>x;
cout<<x<<"小時可換算為....:"<<endl;
y=x/24;
z=x%24;
cout<<y<<"天,"<<z<<"小時。"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2