標題:
[作業] 時間換算機 (二)
[打印本頁]
作者:
方浩葦
時間:
2024-5-10 19:16
標題:
[作業] 時間換算機 (二)
將輸入的
秒數
, 換算成
幾週, 幾天, 幾小時, 幾分鐘, 幾秒
.
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-6-22 09:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, temp, weeks, days, hours, minutes;
cout<<"請輸入您要換算的數字:";
cin>>a;
weeks=a/604800;
cout<<weeks<<" Weeks,";
temp=a-(weeks*7*24*60*60);
days=temp/86400;
cout<<days<<" Days,";
temp=temp-(days*24*60*60);
hours=temp/3600;
cout<<hours<<" Hours,";
temp=temp-(hours*60*60);
minutes=temp/60;
cout<<minutes<<" Minutes,";
temp=temp-(minutes*60);
cout<<temp<<" Seconds"<<endl<<endl;;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2