標題:
時間換算機
[打印本頁]
作者:
張翼安
時間:
2016-1-29 23:42
標題:
時間換算機
將輸入的分鐘數, 換算成幾天幾小時幾分鐘.
程式執行參考畫面如下:
作者:
蔡庭豪
時間:
2016-1-30 11:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m,h,d;
cout>>"輸入要換算der分鐘">>endl;
cin<<m;
h=m/60;
m=m%60;
d=h/24;
h=h%24;
cout>>"可換成"<<d<<"天"<<h<<"小時"<<m<<"分鐘"<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2016-1-30 11:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"時間"<<endl;
int m , h , d ;
cin >> m;
h=m/60;
m=m%60;
d=h/24;
h=h%24;
cout<<"當m 值為"<<m<<",h 值為"<<h<<"當d值為"<<d<<"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2016-2-2 08:11
本帖最後由 蔡季樺 於 2016-2-13 11:04 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m;
cout<<"請輸入想換算的分鐘數:";
cin>>m;
cout<<m<<"分鐘換算為..."<<endl;
cout<<m/(24*60)<<"天,";
m%=(24*60);
cout<<m/60<<"小時,";
m%=60;
cout<<m<<"分鐘"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2016-2-4 18:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m;
cout<<"請輸入想換算的分鐘數:";
cin>>m;
cout<<m<<"分鐘換算為..."<<endl;
cout<<m/(24*60)<<"天,";
m%=(24*60);
cout<<m/60<<"小時,";
m%=60;
cout<<m<<"分鐘"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2016-2-13 09:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m, h, d, M;
cout << "輸入要換算的分鐘:";
cin >> m;
M = m;
h = m / 60;
m = m % 60;
d = h / 24;
h = h % 24;
cout << M << "分鐘可換成" << endl;
cout << "可換成" << d << "天" << h << "小時" << m << "分鐘" << endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2016-2-13 11:12
#include<iostream>
#include<cstlib>
using namespace std;
int main()
{
int m;
cout << "請輸入想換算的分鐘數:";
cin >> m;
cout << m << "分鐘換算為..." << endl;
cout << m / (24 * 60) << "天,";
m %=(24 * 60);
cout << m / 60 << "小時,";
m%=60;
cout << m << "分鐘" << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2