標題:
[隨堂測驗] 時間換算機
[打印本頁]
作者:
方浩葦
時間:
2024-7-6 12:04
標題:
[隨堂測驗] 時間換算機
將輸入的
分鐘數
, 換算成
幾天幾小時幾分鐘
.
程式執行參考畫面如下:
本帖隱藏的內容需要回復才可以瀏覽
作者:
高湘庭
時間:
2024-7-6 14:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x;
re:
cout<<"請輸入你想換算的分鐘數";
cin>>x;
cout<<"也可換算為";
if(x<=0)
goto re;
if(x>=1240){
cout<<x/1240<<"天"<<endl;
x%=1240;}
if(x>=60&&x<1240){
cout<<x/60<<"小時"<<endl;
}
if(x>=1&&x<60)
cout<<x<<"分鐘"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-7-6 15:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x;
re:
cout<<"請輸入你想換算的分鐘數";
cin>>x;
cout<<"可換算為";
if(x<=0){
goto re;
}
if(x>=1440){
cout<<x/1440<<"天"<<endl;
x%=1440;}
if(x>=60){
cout<<x/60<<"小時"<<endl;
x%=60;}
if(x>=1)
cout<<x<<"分鐘"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-7-6 15:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int a;
cout<<"輸入想換算的分鐘數"<<endl;
cin>>a;
if(a>1440){
cout<<a/1440<<"天"<<endl;
a%=1440;
}
if(a>60){
cout<<a/60<<"小時"<<endl;
a%=60;
}
if(a>0){
cout<<a<<"分鐘"<<endl;
}
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-7-6 15:53
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入想換算的分鐘數(超過60):";
cin>>x;
cout<<x<<"分鐘可換算成";
if(x>=1440)
{
cout<<x/1440<<"天 ";
x=x%1440;
}
if(x>=60&&x<1440)
{
cout<<x/60<<"小時 ";
x=x%60;
}
if(x>0&&x<60)
cout<<x<<"分鐘"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-7-13 14:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int x;
cout<<"請輸入你想換算的分鐘數:"<<endl;
cin>>x;
if(x<=0)
goto re;
else{
cout<<x<<"分鐘可換算為..."<<endl;
if(x>=1440){
cout<<x/1440<<"天 ";
x=x%1440;
}
if(x>=60){
cout<<x/60<<"小時 ";
x=x%60;
}
if(x>0)
cout<<x<<"分鐘";
cout<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-7-13 14:25
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入想換算的分鐘數(超過60):"<<endl;
cin>>x;
cout<<x<<"分鐘可換算成:"<<endl;
if(x>=1440)
{
cout<<x/1440<<"天,";
x=x%1440;
}
if(x>=60&&x<1440)
{
cout<<x/60<<"小時,";
x=x%60;
}
if(x>0&&x<60)
cout<<x<<"分鐘"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-7-13 14:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int time;
cout<<"請輸入你想換算的分鐘數: ";
cin>>time;
cout<<time<<"分鐘可換算為..."<<endl;
{
if(time>=1440)
{cout<<time/1440<<"天, ";
time%=1440;}
if(time>=60)
{cout<<time/60<<"小時, ";
time%=60;}
if(time>=1)
{cout<<time/1<<"分鐘";
time%=1;}
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2