標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2013-3-16 14:26
標題:
if...else if...else 判斷式
本帖最後由 tonyh 於 2013-3-16 14:46 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的分數: ";
cin>>score;
if(score==100)
{
cout<<"哇! 滿分!"<<endl;
}
else if(score>=60 && score<100) // && 是 and 的意思
{
cout<<"恭喜你! 及格了!"<<endl;
}
else if(score>0 && score<60)
{
cout<<"不及格! 打屁股!"<<endl;
}
else if(score==0)
{
cout<<"鴉蛋? 斬!"<<endl;
}
else //其餘所有情況
{
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-3-16 14:51
#include<iostream>
#include<cstdilb>
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<60)
{
cout<<"笨笨笨!"<<endl;
}
else
{
cout<<"別亂完!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃柏維
時間:
2013-3-16 14:54
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
林鎧言
時間:
2013-3-16 14:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入你的分數:";
cin>>x;
if(x==100)
{
cout<<"哇滿分耶!"<<endl;
}
else if(x<100 && x>=60)
{
cout<<"你及格了"<<endl;
}
else if(x>0 && x<60)
{
cout<<"不及格砍頭"<<endl;
}
else if(x==0)
{
cout<<"回家把你打到死"<<endl;
}
else
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭凡瑛
時間:
2013-3-16 14:55
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
劉得旗
時間:
2013-3-16 14:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"your score?";
cin>>score;
if(score==100)
{
cout<<"滿分!"<<endl;
}
else if(score>=60 && score<100)
{
cout<<"及格!"<<endl;
}
else if(score<60 && score>1)
{
cout<<"不及格!"<<endl;
}
else
{
cout<<"Error"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-3-16 14:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的分數: ";
cin>>score;
if(score==100)
{
cout<<"哇!滿分!太神了!"<<endl;
}else if(score>=60 && score<100) //&& and的意思
{
cout<<"恭喜你及格了!"<<endl;
}else if(score>0 && score<60)
{
cout<<"不及格打屁股!"<<endl;
}else if(score==0)
{
cout<<"不及格在加油..."<<endl;
}
else
{
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-3-16 14:58
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
黃崇維
時間:
2013-3-16 15:03
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
林以諾
時間:
2013-3-16 15:07
#include<iostream>
#include<cstdlib>
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<<"不及格!去死啊!";
}
else if(score==0)
{
cout<<"斬";
}
else
{
cout<<"輸入錯物誤!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林長逸
時間:
2013-3-16 15:08
#include<iostream>
#include<cstdlib>
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)
{
cout<<"斬了"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭凡瑛
時間:
2013-3-28 20:06
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
張瀚仁
時間:
2013-3-28 20:15
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2