標題:
[作業] if...else if...else
[打印本頁]
作者:
tonyh
時間:
2011-9-24 17:25
標題:
[作業] if...else if...else
利用 if...else if...else 敘述, 試做一個年級判斷程式:
1,2 年級 --> 低年級
3,4 年級 --> 中年級
5,6 年級 --> 高年級
作者:
劉漢文
時間:
2011-9-25 13:36
本帖最後由 劉漢文 於 2011-9-25 13:59 編輯
#include<iostream>
using namespace std ;
int main()
{
int age;
cout<<"請輸入**國小的年級:";
cin>>age;
if(age>0 && age<3)
{
cout<<"你是低年級的學生ㄜ!"<<endl;
}else if(age>=3 && age<5)
{
cout<<"你是中年級的學生ㄜ!"<<endl;
}else if(age>=5 && age<7)
{
cout<<"你是高年級的學生ㄜ!"<<endl;
}else if(age>=7 && age<10)
{
cout<<"你是國中生,去讀你的書啦!"<<endl;
}else if(age>=10 && age<13)
{
cout<<"你是高中生ㄜ!" <<endl;
}else if(age==0)
{
cout<<"你還沒國小,回去讀幼稚園吧!"<<endl;
}else if(age>=13 && age<17)
{
cout<<"你是大學生要早睡早起身體才會好!"<<endl;
}else
{
cout<<"喔喔年級有那麼高嗎!!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2011-9-30 22:50
#include<iostream>
using namespace std;
int main()
{
int age;
cout<<"請問您是幾年級的??(請寫代號)"<<endl;
cout<<"1.一年級 2.二年級 3.三年級"<<endl;
cout<<"4.四年級 5.五年級 6.六年級"<<endl;
cout<<"7.七年級(國一) 8.八年級(國二) 9.九年級(國三)"<<endl;
cin>>age;
if(age==1)
{
cout<< "你是一年級 低年級 請到一年級的教室報到"<<endl;
}
else if(age==2)
{
cout<< "你是二年級 低年級 "<<endl;
}
else if(age==3)
{
cout<< "你是三年級 中年級 第一次分班跟同學相處的愉快嗎"<<endl;
}
else if(age==4)
{
cout<< "你是四年級 中年級 "<<endl;
}
else if(age==5)
{
cout<< "你是五年級 高年級 第二次分班課業是否變重一點"<<endl;
}
else if(age==6)
{
cout<< "你是六年級 高年級 在國小的最後一年是否對學校有所留戀" <<endl;
}
else if(age==7)
{
cout<<"你是國一 一個結束又是一個新的開始"<<endl;
}
else if(age==8)
{
cout<<"你是國二 課業壓力很重要撐下去加油"<<endl;
}
else if(age==9)
{
cout<<"你是國三 要準備考基測了別再貪玩 "<<endl;
}
else
{
cout<<"你到底是幾年級的阿?吃飽太閒歐"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-10-1 16:42
#include<iostream>
using namespace std ;
int main()
{
int age;
cout<<"請輸入**國小的年級:";
cin>>age;
if(age>0 && age<3)
{
cout<<"你是低年級的學生ㄜ!"<<endl;
}else if(age>=3 && age<5)
{
cout<<"你是中年級的學生ㄜ!"<<endl;
}else if(age>=5 && age<7)
{
cout<<"你是高年級的學生ㄜ!"<<endl;
}else if(age>=7 && age<10)
{
cout<<"你是國中生,為什麼來國小!!"<<endl;
}else if(age>=10 && age<13)
{
cout<<"高中!?回去念你的書吧!!" <<endl;
}else if(age==0)
{
cout<<"還沒國小,回去找你的幼稚園老師吧!"<<endl;
}else if(age>=13 && age<17)
{
cout<<"你是大學生回去好好唸你書吧!"<<endl;
}else
{
cout<<"你的年級有那麼高嗎!!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2011-10-1 16:47
#include<iostream>
using namespace std ;
int main()
{
int age;
cout<<"請問您幾年級?";
cin>>age;
if(age >= 1 && age<3)
{
cout<<"你是低年級";
}else if(age >= 3 && age<5)
{
cout<<"你是中年級";
}else if(age >= 5 && age<=6)
{
cout<<"你是高年級";
}
system("pause");
return 0 ;
}
複製代碼
作者:
許逸瑋
時間:
2011-10-1 16:52
#include<iostream>
using namespace std ;
int main()
{
int age;
cout<<"請輸入你的年級:";
cin>>age;
if(age>0 && age<3)
{
cout<<"低年級"<<endl;
}else if(age>=3 && age<5)
{
cout<<"中年級"<<endl;
}else if(age>=5 && age<7)
{
cout<<"高年級"<<endl;
}else if(age>=7 && age<10)
{
cout<<"國中生"<<endl;
}else if(age>=10 && age<13)
{
cout<<"高中生" <<endl;
}else if(age==0)
{
cout<<"幼稚園"<<endl;
}else if(age>=13 && age<17)
{
cout<<"大學生"<<endl;
}else
{
cout<<"亂打"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-10-1 16:54
#include<iostream>
using namespace std ;
int main()
{
int age;
cout<<"請輸入國小年級:";
cin>>age;
if(age>0 && age<3)
{
cout<<"低年級"<<endl;
}else if(age>=3 && age<5)
{
cout<<"中年級"<<endl;
}else if(age>=5 && age<7)
{
cout<"高年級"<<endl;
}else if(age>=7 && age<10)
{
cout<<""<<endl;
}else if(age>=10 && age<13)
{
cout<<"高中生" <<endl;
}else if(age==0)
{
cout<<"不是小學生!!"<<endl;
}else if(age>=13 && age<17)
{
cout<<"大學生"<<endl;
}else
{
cout<<"X!!!"<<endl;
}
system("pause");
return 0;
}
作者:
t8155745
時間:
2011-10-1 16:54
#include <iostream>
using namespace std;
int main()
{
int age;
cout<<"請問你幾年級?" ;
cin>>age;
if(age>=1 && age<3)
{
cout<<"你是低年級" ;
}else if(age>=3 && age<5)
{
cout<<"你是中年級" ;
}else if(age>=5 && age<6)
{
cout<<"你是高年級";
}else
{
cout<<"你輸入錯誤";
}
cout<<endl ;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2