標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2015-3-27 20:30
標題:
if...else if...else 判斷式
本帖最後由 tonyh 於 2015-4-9 21:01 編輯
//if...else if...else
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score==100)
cout<<"哇!滿分!"<<endl;
else if(score<100 && score>=60)
cout<<"恭喜你及格了,給你糖吃!"<<endl;
else if(score>0 && score<60)
cout<<"不及格!打屁股!"<<endl;
else if(score==0)
cout<<"零分?斬!"<<endl;
else
cout<<"輸入錯誤!斬!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-3-27 20:46
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入您的成績";
cin>>score;
if(score==100)
{
cout<<"阿不就好棒棒"<<endl;
}
else if(score<100 && score>=60)
{
cout<<"請再接再厲"<<endl;
}
else if(score<60 && score>0)
{
cout<<"遜掉了拉"<<endl;
}
else if(score==0)
{
cout<<"夭壽喔,都沒讀書"<<endl;
}
else if(score>100)
{
cout<<"太...神...啦! "<<endl;
}
else
{
cout<<"請別亂輸! "<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-3-27 20:47
#include<iostream> //引入標頭檔 <基本輸入輸出> in & out stream
#include<cstdlib> //引入標頭檔 <基本函式庫> c standard library
using namespace std; //使用命名空間 std
int main() //主函式
{
re:
int x;
cout<<"輸入成績:"<<endl;
cin>>x;
if (x==100)
{
cout<<"得到100元"<<endl;
}
else if (x>=60&&x<100)
{
cout<<"你好棒"<<endl;
}
else if (x<60&&x>0)
{
cout<<"去罰站"<<endl;
}
else if(x==0)
{
cout<<"不要回來了"<<endl;
}
goto re;
system("pause"); //暫停
return 0; //回傳0到主控台告訴電腦,程式已成功執行
}
複製代碼
作者:
曾挺桂
時間:
2015-3-27 21:11
//if...else
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score==100)
{
cout<<"Wow!perfect!"<<endl;
}
else if(score<100 && score>=60)
{
cout<<"Good"<<endl;
}
else if(score<60 && score>0)
{
cout<<"Too bad"<<endl;
}
else if(score==0)
{
cout<<"You are zero"<<endl;
}
else
{
cout<<"Are you crazy?"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2015-3-27 21:23
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入您的成績:";
cin>>score;
if(score==100)
{
cout<<"SALA!AO"<<endl;
}
else if(score<100 && score>=60)
{
cout<<"你好"<<endl;
}
else if(score<60 && score>0)
{
cout<<"秀逗"<<endl;
}
else if(score==0)
{
cout<<"白癡"<<endl;
}
else if(score>100)
{
cout<<"誰?"<<endl;
}
else
{
cout<<"是我"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2