標題:
switch 判斷式 (二)
[打印本頁]
作者:
張翼安
時間:
2015-10-24 00:01
標題:
switch 判斷式 (二)
利用 switch 判斷式, 設計一有趣的急智問答選擇題.
作者:
張健勳
時間:
2015-10-24 11:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int ans;
string msg ;
cout<<"<老師的腦殘問答>"<<endl;
cout<<"請問老師有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻"<<endl;
cin>>answer;
switch(answer)
case:1
msg = "你看過老師用一隻腳走路的嗎?";
break;
case:2
msg = "恭喜你答對了 你要被答錯的笨蛋扁了";
break;
case:3
msg = "阿咧老師怎麼會斷一隻腳";
break;
case:4
msg = "摁摁你是個大白癡居然會選這個答案";
break;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-10-24 11:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
string msg;
cout<<"請問豬有幾隻腳?(1)1隻(2)2隻(3)3隻(4)4隻"<<endl;
cin>> x;
switch(x)
{
case 4:
msg="答對";
break;
case 1 ... 3:
msg="沒吃過豬肉也看過豬走路";
break;
}
cout<<msg<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-10-24 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int ans;
string msg;
cout<<"請輸入豬有幾隻腳:";
cin>>ans;
switch(ans)
{
case 4:
msg="答對了!!!";
break;
default:
msg="白癡!!!";
}
cout<<msg<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-10-24 11:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ int ans;
string msg;
cout<<"請問豬有幾隻腳"<<endl;
cin>>ans;
switch(ans){
case 1:
msg="錯誤";
break;
case 2:
msg="錯誤";
break;
case 3:
msg="錯誤";
break;
case 4:
msg="答對";
break;
}
cout<<"msg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-10-24 11:30
本帖最後由 tonyh 於 2015-10-31 11:08 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int answer;
string msg;
cout << "請問豬有幾隻腳:" << endl;
cin >> answer;
switch(answer){
case 1:
msg = "錯誤!!";
break;
case 2:
msg = "錯誤!!";
break;
case 3:
msg = "錯誤!!";
break;
case 4:
msg = "正確!!";
break;
}
cout << msg ;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2015-10-27 18:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int answer;
string msg ;
cout<<"<腦殘時間>"<<endl;
cout<<"蛇有幾隻腳?(1)一隻(2)兩隻(3)三隻(4)沒有腳"<<endl;
cin>>answer;
switch(answer)
{
case 1 ... 3:
msg = "一群白癡";
break;
case 4:
msg = "阿不就好棒棒";
break;
default:
msg = "error";
}
cout<<msg<<endl;
goto re;
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2