標題:
停了多久?(一)
[打印本頁]
作者:
may
時間:
2019-7-13 10:17
標題:
停了多久?(一)
假設停車時段分為:
a. 2小時以內(含2小時),每小時以30元計算
b. 2小時以上,不足4小時,每小時以50元計算
c. 4小時以上,不足6小時,每小時以80元計算
d.6小時以上,每小時以100元計算
張先生某次停車費繳了720元,他到底停了幾小時?
作者:
黃宥華
時間:
2019-9-1 15:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float money;
cout<<"請輸入金額";
cin>>money;
if(money>=600)
cout<<"你停了"<<money/100<<"小時。"<<endl;
else if(money>=320 && money<600)
cout<<"你停了"<<money/80<<"小時。"<<endl;
else if(money>100 && money<320)
cout<<"你停了"<<money/50<<"小時。"<<endl;
else
cout<<"你停了"<<money/30<<"小時。"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-9-8 12:05
本帖最後由 黃辰昊 於 2019-9-8 12:09 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float money;
cout<<"請輸入金額: ";
cin>>money;
if(money>=600)
cout<<"您停了"<<money/100<<"小時"<<endl;
else if(money>=320 && money<600)
cout<<"您停了"<<money/80<<"小時"<<endl;
else if(money>100 && money<200)
cout<<"您停了"<<money/80<<"小時"<<endl;
else
cout<<"您停了"<<money/30<<"小時"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-11-22 20:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float money;
cout<<"請輸入金額: ";
cin>>money;
if(money>=600)
cout<<"您停了"<<money/100<<"小時"<<endl;
else if(money>=320 && money<600)
cout<<"您停了"<<money/80<<"小時"<<endl;
else if(money>100 && money<200)
cout<<"您停了"<<money/80<<"小時"<<endl;
else
cout<<"您停了"<<money/30<<"小時"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪勻蓁
時間:
2021-9-7 16:51
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int money, hr;
cout<<"請輸入總額: ";
cin>>money;
if(money<=100)
cout<<"你停了"<<money/30<<"小時"<<endl;
else if(money>100 && money<320)
cout<<"你停了"<<money/50<<"小時"<<endl;
else if(money>=320 && money<600)
cout<<"你停了"<<money/80<<"小時"<<endl;
else
cout<<"你停了"<<money/100<<"小時"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳柏融
時間:
2022-3-5 12:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m,h;
cin>>h;
if(h<=2)
{
m=h*30;
}
else if(h>2 and h<4){
m=60+(h-2)*50;
}
else if(h>=4 and h<6){
m=60+100+(h-4)*80 ;
}
else if(h>=6){
m=320+(h-6)*100;
}
cout<<m;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2