標題:
if...else if...else 判斷式
[打印本頁]
作者:
歐柏罕
時間:
2017-10-14 14:27
標題:
if...else if...else 判斷式
判斷分數
作者:
歐柏罕
時間:
2017-10-14 14:29
#include<iostream> //輸入輸出
#include<cstdlib> //主函式
using namespace std;
int main()
{
int score; //變數名稱與要做的事有一定程度的相關
cout<<"請輸入你的成績: ";
cin>>score;
if(score >= 60 && score<100) // 條件同時成立
{
cout<<"恭喜你及格了"<<endl;
}
else if(score == 100)
{
cout<<"滿分喔!"<<endl;
}
else if(score >=0 && score<60)
{
cout << "不及格" <<endl;
}
else
{
cout << "輸入錯誤!!"<<endl;
}
複製代碼
作者:
林峻安
時間:
2017-10-14 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num;
cout<<"請輸入你的成績"<<endl;
cin>>num;
if(num>=60&&num==100)
{
cout<<"及格"<<endl;
}
else if(num<=59&&num>=0)
{
cout<<"不及格"<<endl;
}
else if(num==100)
{
cout<<"及格"<<endl;
}
else
{
cout<<"不要亂"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2017-10-14 14:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int grade;
cout<<"成績??"<<endl;
cin>>grade;
if(grade>59&&grade<101)
{
cout<<"及格"<<endl;
}
else if(grade<60&&grade>-1)
{
cout<<"不及格"<<endl;
}
else
{
cout<<"屁啦"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
康紘嘉
時間:
2017-10-14 14:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績"<<endl;
cin>>score;
if(score>=60 && score<100)
cout<<"恭喜你及格"<<endl;
else if(score==100)
{
cout<<"滿分"<<endl;
}
else if(score>=0 && score<60)
{
cout<<"你不及格"<<endl;
}
else
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2017-10-14 14:50
本帖最後由 歐柏罕 於 2017-10-14 15:02 編輯
#include<iostream> //輸入輸出
#include<cstdlib> //主函式
using namespace std;
int main()
{
int score; //變數名稱與要做的事有一定程度的相關
cout<<"請輸入你的成績: ";
cin>>score;
if(score >= 60 && score<100) // 條件同時成立
{
cout<<"恭喜你及格了"<<endl;
}
else if(score == 100)
{
cout<<"滿分喔!"<<endl;
}
else if(score >=0 && score<60)
{
cout << "不及格" <<endl;
}
else
{
cout << "輸入錯誤!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
康紘嘉
時間:
2017-10-14 14:59
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績"<<endl;
cin>>score;
if(score>=80 && score<100)
cout<<"甲等"<<endl;
else if(score>=70 && score<79)
{
cout<<"乙等"<<endl;
}
else if(score>=60 && score<69)
{
cout<<"丙等"<<endl;
}
else if(score>=0 && score<59)
cout<<"不及格"<<endl;
else
cout<<"輸入錯誤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭楀諺
時間:
2017-10-20 20:22
#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
cout<<"輸入錯誤!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2