標題:
時間換算機
[打印本頁]
作者:
陳品肇
時間:
2019-7-6 00:30
標題:
時間換算機
將輸入的分鐘數, 換算成幾天幾小時幾分鐘. 程式執行參考畫面如下:
[attach]6825[/attach]
作者:
黃傳耀
時間:
2019-7-6 11:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int time;
cout<<"幾分鐘?";
cin>>time;
cout<<"總共有"<<time/60/24<<"天"<<time/60%24<<"小時"<<time%60<<"分";
system("pause");
return 0;
}
複製代碼
作者:
李易展
時間:
2019-7-6 11:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入分鐘:";
cin>>a;
cout<<a/1440<<"天"<<a%1440/60<<"小時"<<a%1440%60<<"分鐘"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2019-7-6 11:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int time;
cout<<"請輸入想換算地分鐘數:";
cin>>time;
cout<<time<<"分鐘可換算為..."<<endl;
cout<<time/1440<<"天"<<(time%1440)/60<<"小時"<<time%1440%60<<"分鐘." ;
system("pause");
return 0;
}
複製代碼
作者:
邱楷宸
時間:
2019-7-20 10:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int time ;
cout<<"請輸入你想要的分鐘數:";
cin>>time;
cout<<"總共有"<<time/60/24<<"天"<<time/60%24<<"小時"<<time%60<<"分";
system("pause");
return 0;
}
複製代碼
作者:
王建葦
時間:
2019-7-20 10:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入你想換算的分鐘數:";
cin>>x;
cout<<x<<"可換算為..."
cout<<x/60/24<<"天"<<x/60%24<<"小時"<<x%60<<"分";
system("pause");
return 0;
}
複製代碼
作者:
謝蓮金
時間:
2019-7-20 13:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
{
cout<<"請輸入一個時間:"<<endl;
cin>>a;
cout<<a/1440<<"天"<<a/60%24<<"小時"<<a%60<<"分";
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2