標題:
switch 判斷式
[打印本頁]
作者:
tonyh
時間:
2015-4-10 19:55
標題:
switch 判斷式
本帖最後由 tonyh 於 2015-4-10 21:36 編輯
利用 switch 判斷式, 設計一成績分級程式, 分級方式如下:
80分~100分 甲等
70分~79分 乙等
60分~69分 丙等
0分~59分 不及格
不在以上範圍 輸入錯誤
[使用者介面如下]
請輸入你的成績: 77
乙等!
請輸入你的成績: 101
輸入錯誤!
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
switch(score)
{
case 80 ... 100:
cout<<"甲等!"<<endl;
break;
case 70 ... 79:
cout<<"乙等!"<<endl;
break;
case 60 ... 69:
cout<<"丙等!"<<endl;
break;
case 0 ... 59:
cout<<"不及格!"<<endl;
break;
default:
cout<<"輸入錯誤!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-4-10 20:49
本帖最後由 沈子耕 於 2015-4-10 21:26 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入您的成績:";
cin>>score;
switch(score)
{
case 80 ... 100:
cout<<"甲等"<<endl;
break;
case 70 ... 79 :
cout<<"乙等"<<endl;
break;
case 60...69:
cout<<"丙等"<<endl;
break;
case 0...59:
cout<<"不及格"<<endl;
break;
default:
cout<<"輸入錯誤!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-4-11 11:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
switch(score)
{
case 80 ... 100:
cout<<"甲等!"<<endl;
break;
case 70 ... 79:
cout<<"乙等!"<<endl;
break;
case 60 ... 69:
cout<<"丙等!"<<endl;
break;
case 0 ... 59:
cout<<"不及格!"<<endl;
break;
default:
cout<<"輸入錯誤!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-4-11 12:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
switch(score)
{
case 80 ... 100:
cout<<"甲等!"<<endl;
break;
case 70 ... 79:
cout<<"乙等!"<<endl;
break;
case 60 ... 69:
cout<<"丙等!"<<endl;
break;
case 0 ... 59:
cout<<"不及格!"<<endl;
break;
default:
cout<<"輸入錯誤!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-4-11 12:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
switch(score)
{
case 80 ... 100:
cout<<"甲等!"<<endl;
break;
case 70 ... 79:
cout<<"乙等!"<<endl;
break;
case 60 ... 69:
cout<<"丙等!"<<endl;
break;
case 0 ... 59:
cout<<"不及格!"<<endl;
break;
default:
cout<<"輸入錯誤!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2015-4-11 19:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
switch(score)
{
case 80 ... 100:
cout<<"甲等!"<<endl;
break;
case 70 ... 79:
cout<<"乙等!"<<endl;
break;
case 60 ... 69:
cout<<"丙等!"<<endl;
break;
case 0 ... 59:
cout<<"不及格!"<<endl;
break;
default:
cout<<"輸入錯誤!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-4-17 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int anc;
cout<<"阿呆的智缺問答: "<<endl;
cout<<"請問圓形是屬於什麼形狀?(1)方形(2)圓形(3)不規則形(4)以上皆是"<<endl;
cout<<"請輸入"<<endl;
cin>>anc;
switch(anc)
{
case 1:
cout<<"你的...是不是有洞啊?"<<endl;
break;
case 2:
cout<<"你似乎不是白痴嘛!!"<<endl;
break;
case 3:
cout<<"您貴庚啊?大概不超過一歲吧?"<<endl;
break;
case 4:
cout<<"以你的腦袋還會用電腦啊?!"<<endl;
break;
default:
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2