標題:
時間換算機 (二)
[打印本頁]
作者:
陳育霖
時間:
2023-7-8 21:37
標題:
時間換算機 (二)
將輸入的
秒數
, 換算成
幾週, 幾天, 幾小時, 幾分鐘, 幾秒
.
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳品諺
時間:
2023-7-22 18:27
#include<iostream>
#include<cstdlib>
#include<iomanip>
using namespace std;
int main()
{
int a;
cout<<"請輸入您想換算的秒數: ";
cin>>a;
cout<<a<<"秒可換算為..."<<endl;
cout<<a/604800<<"週, ";
a=a%604800;
cout<<a/86400<<"天, ";
a=a%86400;
cout<<a/3600<<"小時, ";
a=a%3600;
cout<<a/60<<"分鐘, ";
a=a%60;
cout<<a<<"秒."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳頤寬
時間:
2023-12-22 20:51
本帖最後由 陳育霖 於 2023-12-23 13:41 編輯
#include<iostream>
#include<cstdlib>
#include<iomanip>
using namespace std;
int main()
{
int a;
cout<<"請輸入您想換算的秒數: ";
cin>>a;
cout<<a<<"秒可換算為..."<<endl;
cout<<a/604800<<"週, ";
a=a%604800;
cout<<a/86400<<"天, ";
a=a%86400;
cout<<a/3600<<"小時, ";
a=a%3600;
cout<<a/60<<"分鐘, ";
a=a%60;
cout<<a<<"秒."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳頤寬
時間:
2023-12-24 14:29
#include<iostream>
#include<cstdlib>
#include<iomanip>
using namespace std;
int main()
{
int a;
cout << "請輸入您想換算的秒數: ";
cin >> a;
cout << a << "秒可換算為..." << endl;
if(a/604800>1)
cout << a / 604800 << "週, ";
a = a % 604800;
if (a / 86400 > 1)
cout << a / 86400 << "天, ";
a = a % 86400;
if (a / 3600 > 1)
cout << a / 3600 << "小時, ";
a = a % 3600;
if (a / 60 > 1)
cout << a / 60 << "分鐘, ";
a = a % 60;
if (a > 0)
cout << a << "秒." << endl;
system("pause");
return 0;
}
複製代碼
作者:
王子夫
時間:
2024-7-25 17:36
#include <iostream>
using namespace std;
int main()
{
int s;
cout << "請輸入換算的秒數: ";
cin >> s;
cout << s << "秒可換算為..." << endl;
if (s/604800){
cout << s/604800 << "週" << " ";
s = s%604800;
}
if (s/86400){
cout << s/86400 << "天" << " ";
s = s%86400;
}
if (s/3600){
cout << s/3600 << "小時" << " ";
s = s%3600;
}
if (s/60){
cout << s/60 << "分鐘" << " ";
s = s%60;
}
if (s){
cout << s << "秒" << endl;
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2