標題:
if...else if...else 敘述 (二)
[打印本頁]
作者:
tonyh
時間:
2012-8-7 10:59
標題:
if...else if...else 敘述 (二)
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成積: ";
cin>>score;
if(score==100)
{
cout<<"哇!滿分!你太神了!"<<endl;
}
else if(score>=60 && score<100)
{
cout<<"恭喜你及格了!"<<endl;
}
else if(score>=0 && score<60)
{
cout<<"不及格!打屁股!"<<endl;
}
else if(score==0)
{
cout<<"你..... (氣到說不出話來)"<<endl;
}
else //所有其他的狀況
{
cout<<"別來亂!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2012-8-7 11:03
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成積: ";
cin>>score;
if(score==100)
{
cout<<"滿分!"<<endl;
}
else if(score>=60 && score<100)
{
cout<<"及格了!"<<endl;
}
else if(score>=0 && score<60)
{
cout<<"不及格!"<<endl;
}
else if(score==0)
{
cout<<"太扯了八!"<<endl;
}
else //所有其他的狀況
{
cout<<"走開!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
周旻賢
時間:
2012-8-7 11:04
#include<iostream>
using namespace std;
int main()
{
int x;
cout<<"請輸入你的分數:"<<endl;
cin>>x;
if(x==100)
{
cout<<"神人!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"<<endl;
}
else if(x>=60 && x<100)
{
cout<<"還不錯!目標100"<<endl;
}
else if(x<60 && x>=0)
{
cout<<"來人阿!拖出去斬了"<<endl;
}
else
{
cout<<"保全!來抓人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉嘉琳
時間:
2012-8-7 11:04
{
int score;
cout<<"請輸入你的成積: ";
cin>>score;
if(score==100)
{
cout<<"你一定很用功!!(拍拍手)"<<endl;
}
else if(score>=60 && score<100)
{
cout<<"不錯不錯!!!"<<endl;
}
else if(score>=0 && score<60)
{
cout<<"書都沒在讀ㄚ"<<endl;
}
else if(score==0)
{
cout<<"你..你..算了吧!"<<endl;
}
else //所有其他的狀況
{
cout<<"回去睡覺啦!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許睿森
時間:
2012-8-7 11:06
#include<iostream>
using namespace std;
int main()
{
cout<<"☆☆☆☆☆☆☆☆☆" <<endl;
float x;
cout<<"☆請輸入你的成績:";
cin>>x;
cout<<"☆你輸入的分數為"<<x<<endl;
if(x==100)
{
cout<<"☆恭喜你考滿分!"<<endl;
}
else if( x >=80 && x<100)
{
cout<<"☆加油再努力一點滿分就是你的了!"<<endl;
}
else if(x<=60 && x>=0)
{
cout<<"☆加油........!"<<endl;
}
else
{
cout<<"☆去死!"<<endl;
}
cout<<"☆☆☆☆☆☆☆☆☆"<<endl ;
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2012-8-7 11:07
#include<iostream>
using namespace std;
int main()
{
int r;
cout<<"請輸入你的成績: "<<endl;
cin>>r;
if(r==100)
{
cout<<"你好厲害喔!考了滿分!"<<endl;
}
else if(r>=60 && r<100)
{
cout<<"恭喜你!你及格了!"<<endl;
}
else if(r>=0 && r<60)
{
cout<<"你該打了!考那麼差!"<<endl;
}
else if(r==0)
{
cout<<"你好笨阿!"<<endl;
}
else
{
cout<<"來亂的"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
周煒翔
時間:
2012-8-7 11:11
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成積: ";
cin>>score;
if(score==100)
{
cout<<"你太神了!!!!!!!!!"<<endl;
}
else if(score>=60 && score<100)
{
cout<<"不錯你可以閃人了"<<endl;
}
else if(score>=60 && score<0)
{
cout<<"恭喜你不及格"<<endl;
}
else if(score==0)
{
cout<<"來人阿!拖出去斬了"<<endl;
}
else
{
cout<<"回家吧你"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2012-8-7 11:12
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的分數:"<<endl;
cin>>score;
if(score==100)
{
cout<<"應該的"<<endl;
}
else if(score>60&&score<100)
{
cout<<"你可以去跳樓了"<<endl;
}
else if(score>0&&score<60)
{
cout<<"什麼!!"<<endl;
}
else
{
cout<<"別來亂"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2