標題:
switch 判斷式 (四)
[打印本頁]
作者:
鄭繼威
時間:
2022-12-23 03:44
標題:
switch 判斷式 (四)
續
switch 判斷式 (二)
將題目的答案選項改為以ABCD表示,使用者輸入大寫或小寫都要能接受。
參考回應
A or a: 用跳的嗎?
B or b: 沒吃過豬肉也看過豬走路!
C or c: 你是豬啊?
D or d: 答對了!
其他: 輸入錯誤!
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
char ans; //宣告字元
cout<<"<小米的腦殘問答>"<<endl;
cout<<"請問豬有幾隻腳? (A)一隻 (B)兩隻 (C)三隻 (D)四隻"<<endl;
cout<<"請作答: ";
cin>>ans;
switch(ans)
{
case 'a':
case 'A':
cout<<"用跳的嗎?";
break;
case 'b':
case 'B':
cout<<"沒吃過豬肉也看過豬走路!";
break;
case 'c':
case 'C':
cout<<"你是豬啊!";
break;
case 'd':
case 'D':
cout<<"答對囉!";
break;
default:
cout<<"輸入錯誤!";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張絜晰
時間:
2022-12-23 21:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
char choice;
cout<<"問個小問題:"<<endl;
cout<<"我的腦在哪?(a 冰箱,b 地下室,c 柬埔寨,d 你家)"<<endl;
cout<<"請作答:" ;
cin>>choice;
switch(choice){
case 'a':
case 'A':
cout<<"沒看到欸..."<<endl;
break;
case 'b':
case 'B':
cout<<"我沒有手電筒!"<<endl;
break;
case 'c':
case 'C':
cout<<"蛤?哪裡?"<<endl;
break;
case 'd':
case 'D':
cout<<"..."<<endl;
break;
default:
cout<<"你要跟我一起找嗎? "<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
盧玄皓
時間:
2022-12-23 21:04
本帖最後由 盧玄皓 於 2022-12-30 19:46 編輯
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
char score;
cout<<"<小米的腦殘問題>"<<endl;
cout<<"豬有幾隻腳? a.一隻b.兩隻c.三隻d.四點五隻e.以上皆非"<<endl;
cout<<"請作答: ";
cin>>score;
switch(score
)
{
case 'a':
cout<<"你有問題嗎?";
break;
case 'b':
cout<<"你在哈囉!";
break;
case 'c':
cout<<"ㄜ...?"<<endl;
break;
case 'd':
cout<<"四點五隻?...你看清楚!"<<endl;
break;
case 'e':
cout<<"以上皆非! 正確"<<endl;
break;
default:
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃子豪
時間:
2022-12-23 21:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char option;
cout<<"請問豬有幾隻腳? (A)一隻 (B)兩隻 (C)三隻 (D)四隻"<<endl;
cout<<"請作答: ";
cin>>option;
switch(option)
{
case 'A':
cout<<"用跳的嗎?"<<endl;
break;
case 'B':
cout<<"沒吃過豬肉也看過豬走路!"<<endl;
break;
case 'C':
cout<<"你是豬啊?"<<endl;
break;
case 'D':
cout<<"答對了!"<<endl;
break;
default:
cout<<"沒有"<<option<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
廖秝瑜
時間:
2022-12-24 07:27
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
char ans;
cout<<"<小米的腦殘問答>"<<endl;
cout<<"請問金雞用幾隻腳站? (A)一隻 (B)兩隻 (C)三隻 (D)四隻"<<endl;
cout<<"請作答: ";
cin>>ans;
switch(ans)
{
case 'a':
case 'A':
cout<<"答對囉!";
break;
case 'b':
case 'B':
cout<<"金雞獨立!";
break;
case 'c':
case 'C':
cout<<"你是雞啊!";
break;
case 'd':
case 'D':
cout<<"又不是豬";
break;
default:
cout<<"輸入錯誤!";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2022-12-24 14:17
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
char a;
cout<<"請問皮卡丘的顏色是? (A)黃色 (B)螢光黃 (C)彩色 (D)透明"<<endl;
cout<<"請作答: ";
cin>>a;
switch(a)
{ case 'a':
case 'A':
cout<<"答對了!"<<endl;
break;
case 'b':
case 'B':
cout<<"眼睛要被閃瞎了"<<endl;
break;
case 'c':
case 'C':
cout<<"他吐了嗎?"<<endl;
break;
case 'd':
case 'D':
cout<<"我想我永遠抓不到他了"<<endl;
break;
default:
cout<<"輸入錯誤"<<endl;
break;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂得銓
時間:
2022-12-29 17:43
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
char ans;
cout<<"<腦殘問答>"<<endl;
cout<<"請問雞有幾隻腳? (A)一隻 (B)兩隻 (C)三隻 (D)四隻"<<endl;
cout<<"A: ";
cin>>ans;
switch(ans)
{
case 'a':
case 'A':
cout<<"用跳的嗎?";
break;
case 'b':
case 'B':
cout<<"沒吃過也看過!";
break;
case 'c':
case 'C':
cout<<"多一隻炸雞腿!";
break;
case 'd':
case 'D':
cout<<"correct!";
break;
default:
cout<<"輸入錯誤!";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2022-12-29 19:55
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
char ans; //宣告字元
cout<<"<小米的腦殘問答>"<<endl;
cout<<"請問豬有幾隻腳? (A)一隻 (B)兩隻 (C)三隻 (D)四隻"<<endl;
cout<<"請作答: ";
cin>>ans;
switch(ans)
{
case 'a':
case 'A':
cout<<"用跳的嗎?";
break;
case 'b':
case 'B':
cout<<"沒吃過豬肉也看過豬走路!";
break;
case 'c':
case 'C':
cout<<"你是豬啊!";
break;
case 'd':
case 'D':
cout<<"答對囉!";
break;
default:
cout<<"輸入錯誤!";
}
cout<<endl;
system("pause");
複製代碼
作者:
何權晉
時間:
2022-12-30 19:19
#include <iostream>
using namespace std;
int main()
{
char d;
cout<<"<Bob's nonsense question>"<<endl;
cout<<"How many legs does a big have? (A)One (B)Three (C)Four (D)Two"<<endl;
cout<<"Please enter here: ";
cin>>d;
switch(d)
{
case 'a':
case 'A':
cout<<"Are you out of your mind?";
break;
case 'b':
case 'B':
cout<<"What sort of nonsense is this?";
break;
case 'c':
case 'C':
cout<<"Exellent job";
break;
case 'd':
case 'D':
cout<<"Not exactly...keep trying";
break;
default:
cout<<"oops, information out of reach";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張桔熙
時間:
2022-12-30 19:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
char ans;
cout<<"<小熙的87問題> ";
cout<<"請問貓有幾隻腳? (A)一隻 (B)兩隻 (C)三隻 (D)四隻"<<endl;
cout<<"請作答";
cin>>ans;
switch(ans)
{
case 'A':
case 'a':
cout<<"唉 可憐哪";
break;
case 'B':
case 'b':
cout<<"醫院往前右轉";
break;
case 'C':
case 'c':
cout<<"下面一位~";
break;
case 'D':
case 'd':
cout<<"IQ180";
break;
default:
cout<<"輸入錯誤";
break;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-12-30 19:29
回復
3#
盧玄皓
8
作者:
邵凡榛
時間:
2022-12-30 19:30
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
char pig;
cout<<"小米的問答"<<endl;
cout<<"請問豬有幾隻腳? (A)一隻 (B)兩隻 (C)三隻 (D)四隻"<<endl;
cout<<"請作答:";
cin>>pig;
switch(pig)
{
case 'A':
case 'a':
cout<<"用跳的嗎";
break;
case 'B':
case 'b':
cout<<"沒吃過豬肉也看過豬走路";
break;
case 'C':
case 'c':
cout<<"你是豬啊";
break;
case 'D':
case 'd':
cout<<"答對囉";
break;
default:
cout<<"輸入錯誤";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳寶綸
時間:
2022-12-30 19:31
cout<<"<小米的腦殘問題>"<<endl;
cout<<"豬有幾隻腳? 1.一隻2.兩隻3.三隻4.四點五隻5.以上皆非"<<endl;
cin>>
switch (score){
case 90 ... 100:
cout<<"優等"<<endl;
break;
case 2:
case 80 ... 89:
cout<<"甲等"<<endl;
break;
case 3:
cout<<"三隻"<<endl;
break;
case 4:
cout<<"四點五隻"<<endl;
break;
case 4:
cout<<"以上皆非"<<endl;
break;
default:
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳寶綸
時間:
2022-12-30 19:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
char ans;
cout<<"<小熙的87問題> ";
cout<<"請問貓有幾隻腳? (A)一隻 (B)兩隻 (C)三隻 (D)四隻"<<endl;
cout<<"請作答";
cin>>ans;
switch(ans)
{
case 'A':
case 'a':
cout<<"唉 可憐哪";
break;
case 'B':
case 'b':
cout<<"醫院往前右轉";
break;
case 'C':
case 'c':
cout<<"下面一位~";
break;
case 'D':
case 'd':
cout<<"IQ180";
break;
default:
cout<<"輸入錯誤";
break;
}
system("pause");
return 0;
}
複製代碼
作者:
曹祁望
時間:
2022-12-30 19:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
char ans;
cout<<"請問1+1=?";
cout<<"\n(A)1 (B)2 (C)3 (D)4\n你的答案:";
cin>>ans;
switch(ans){
case 'A':
case 'a':
cout<<"x為正整數 x+x一定>x";
break;
case 'B':
case 'b':
cout<<"正確";
break;
case 'C':
case 'c':
cout<<"數學真好";
break;
case 'D':
case 'd':
cout<<"無言...";
break;
default:
cout<<"輸入錯誤";
}
cout<<"\n";
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2