標題:
【隨堂測驗】 時間換算_請等一下 進階
[打印本頁]
作者:
may
時間:
2020-1-17 23:09
標題:
【隨堂測驗】 時間換算_請等一下 進階
[attach]8254[/attach]
作者:
龔品誠
時間:
2020-1-18 11:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int z;
cout<<"請輸入想換算的秒數";
cin>>z;
cout<<z<<"秒可換算為..."<<endl;
cout<<z/3600<<"時, ";
z%=3600;
cout<<z/60<<"分, ";
z%=60;
cout<<z<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱閎聿
時間:
2020-1-18 11:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int z;
cout<<"請輸入想換算的秒數";
cin>>z;
cout<<z<<"秒可換算為..."<<endl;
cout<<z/3600<<"時, ";
z%=3600;
cout<<z/60<<"分, ";
z%=60;
cout<<z<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉愷鈞
時間:
2020-1-18 11:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int t;
cout<<"請輸入想換算的秒數:";
cin>>t;
cout<<t<<"秒可換算為..."<<endl;
cout<<t/3600<<"時,";
t=t%3600;
cout<<t/60<<"分, ";
t=t%60;
cout<<t<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉愷恩
時間:
2020-1-18 11:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int t;
cout<<"請輸入想換算的秒數:";
cin>>t;
cout<<t<<"秒可換算為..."<<endl;
cout<<t/3600<<"時,";
t=t%3600;
cout<<t/60<<"分, ";
t=t%60;
cout<<t<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張淯祺
時間:
2020-1-18 11:14
本帖最後由 張淯祺 於 2020-1-18 11:15 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int t=0;
cout<<"請輸入秒數"<<endl;
cin>>ㄔ;
cin<<t/3600<<"時,";
t%=3600;
cin<<t/60<<"分,";
t%=60;
cout<<t<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李穎俊
時間:
2020-1-18 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int z;
cout<<"請輸入想換算的秒數";
cin>>z;
cout<<z<<"秒可換算為..."<<endl;
cout<<z/3600<<"時, ";
z%=3600;
cout<<z/60<<"分, ";
z%=60;
cout<<z<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭浚宇
時間:
2020-1-18 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int t;
cout<<"請輸入想換算的秒數:"endl;
cin>>t;
cout<<t<<
"秒換算為:"<<endl;
cout<<t/(60*60)<<"";
t%=60*60;
cout<<t/60<<"分";
t%60;
cout<<t<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林羿丞
時間:
2020-1-18 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int t;
cout<<"請輸入想換算的秒數:";
cin>>t;
cout<<t/(60*60)<<"時";
t%=60*60;
cout<<t<<"秒換算為"<<endl;
cout<<t/60<<"分"<<endl;
t=t%60;
cout<<t<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王銘鴻
時間:
2020-1-18 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int z;
cout<<"請輸入想換算的秒數";
cin>>z;
cout<<z<<"秒可換算為..."<<endl;
cout<<z/3600<<"時, ";
z%=3600;
cout<<z/60<<"分, ";
z%=60;
cout<<z<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2