標題:
[作業] if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2013-3-16 15:20
標題:
[作業] if...else if...else 判斷式
假設有一遊樂園的票價表如下, 請設計一個小程式, 讓電腦依據使用者的年齡, 回應票價與種類:
3歲以下 幼兒票 免費入場
4歲 ~ 12歲 兒童票 50元
13歲 ~ 64歲 一般票 100元
65歲以上 敬老票 70元
作者:
林長逸
時間:
2013-3-16 15:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的平均字數";
cin>>score;
if (score<15)
{
cout<<"不及格!"<<endl;
}
else if(score>=15 && score<30)
{
cout<<"實用!實用!"<<endl;
}
else if(score>=30&& score<80 )
{
cout<<"進階啦1"<<endl;
}
else if(score>=80)
{
cout<<"真專業!"<<endl;
}
else
system ("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2013-3-16 15:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年齡:";
cin>>age;
if(age>=65)
{
cout<<"敬老票! 70元! 屌爆了!"<<endl;
}
else if(age>=13 && age<=64)
{
cout<<"一般票! 100元! 可以死了!"<<endl;
}
else if(age>=4 && age<=12)
{
cout<<"學生票! 50元!跳樓吧!"<<endl;
}
else if(age==0)
{
cout<<"幼兒票! 免費入場! 賽到的!"<<endl;
}
else
{
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2013-3-16 19:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入妳的年齡:";
cin>>age;
if(age>=1 && age<=3)
{
cout<<"幼兒票!免費入場!再過幾年就要付錢了"<<endl;
}
else if(age>=4 && age<12)
{
cout<<"兒童票!50元!錢拿來!"<<endl;
}
else if(age>=13 && age<65)
{
cout<<"一般票!100元給我拿出來"<<endl;
}
else if(age>=65 && age<110)
{
cout<<"敬老票!70元!老扣扣"<<endl;
}
else
{
cout<<"沒這年齡!重輸入"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃柏維
時間:
2013-3-16 23:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年齡: ";
cin>>age;
if(age<=3 && age>=1)
{
cout<<"幼兒票 免費入場"<<endl;
}
else if(age>=4 && age<=12)
{
cout<<"兒童票 50元"<<endl;
}
else if(age>=13 && age<=64)
{
cout<<"一般票 100元"<<endl;
}
else if(age>=65 && age<=100)
{
cout<<"敬老票 70元"<<endl;
}
else
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-3-17 18:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年齡: ";
cin>>age;
if(age<=3 && age>=1)
{
cout<<"幼兒票 免費入場"<<endl;
}
else if(age>=4 && age<=12)
{
cout<<"兒童票 50元"<<endl;
}
else if(age>=13 && age<=64)
{
cout<<"一般票 100元"<<endl;
}
else if(age>=65 && age<=100)
{
cout<<"敬老票 70元"<<endl;
}
else
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林鎧言
時間:
2013-3-21 22:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入你的年齡:";
cin>>x;
if(x>=65 && x<=120)
{
cout<<"敬老票!70元。了不起,活了超過一甲子!"<<endl;
}
else if(x>12 && x<65)
{
cout<<"一般票!100元,你逃不掉的!"<<endl;
}
else if(x>=4 && x<13)
{
cout<<"兒童票!50元,還在讀小學,給你算便宜一點!"<<endl;
}
else if(x>=0 && x<3)
{
cout<<"幼兒票!免費入場,好好喔!"<<endl;
}
else
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林鎧言
時間:
2013-3-22 21:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入你的年齡:";
cin>>x;
if(x>=65 && x<=120)
{
cout<<"敬老票!70元。了不起,活了超過一甲子!"<<endl;
}
else if(x>12 && x<65)
{
cout<<"一般票!100元,你逃不掉的!"<<endl;
}
else if(x>=4 && x<13)
{
cout<<"兒童票!50元,還在讀小學,給你算便宜一點!"<<endl;
}
else if(x>=0 && x<3)
{
cout<<"幼兒票!免費入場,好好喔!"<<endl;
}
else if(x<0)
{
cout<<"莊孝維!你以為我不知道你是亂打得嗎?笨蛋"<<endl;
}
else if(x>120)
{
cout<<"你以為你是人瑞嗎?超過一百甘歲的怪物"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-3-23 10:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"遊樂園驗票系統 "<<endl;
cout<<"請輸入你的年齡: ";
cin>>age;
if(age<=3 && age>=1)
{
cout<<"幼兒票 免費入場!!讚!"<<endl;
}
else if(age>=4 && age<=12)
{
cout<<"兒童票 50元"<<endl;
}
else if(age>=13 && age<=64)
{
cout<<"一般票 100元"<<endl;
}
else if(age>=65 && age<=114)
{
cout<<"敬老票 70元"<<endl;
}
else
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-3-23 13:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年齡:";
cin>>age;
if(age>=65)
{
cout<<"敬老票! 70元! "<<endl;
}
else if(age>=13 && age<=64)
{
cout<<"一般票! 100元! "<<endl;
}
else if(age>=4 && age<=12)
{
cout<<"學生票! 50元!!"<<endl;
}
else if(age==0)
{
cout<<"幼兒票! 免費入場! "<<endl;
}
else
{
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李彥彤
時間:
2013-8-17 17:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年齡:";
cin>>age;
if(age<=3 && age>=1)
{
cout<<"幼兒票,免費入場"<<endl;
}else if(age>=4 && age<=12)
{
cout<<"兒童票,50元"<<endl;
}else if(age>=13 && age<=64)
{
cout<<"一般票,100元"<<endl;
}else if(age>=65 && age<=100)
{
cout<<"老人票,免費"<<endl;
}else
{
cout<<"輸入錯誤,或是太老了禁止入園"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2