標題:
010 if else 選擇題
[打印本頁]
作者:
游東祥
時間:
2014-3-8 15:21
標題:
010 if else 選擇題
用 if ... else if ... else 的方式把 009 的選擇題改寫!
也可以重新出題喔!
作者:
李允軒
時間:
2014-3-8 19:06
本帖最後由 李允軒 於 2014-3-8 19:48 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout << "請問這間教室中有幾個人?" << endl;
cout << "(1)1個 (2)2個 (3)3個 (4)4個" << endl;
cin >> x;
if (x==1)
{
cout << "很抱歉你答錯了";
}
else if (x==2)
{
cout << "你答錯了";
}
else if (x==3)
{
cout << "恭喜你答錯了";
}
else if (x==4)
{
cout << "你答對了";
}
else
{
cout <<"別亂打";
}
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-3-9 13:51
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cout << "英熊聯盟常識問答" << endl;
cout << "作答說明"<< endl;
cout << "題目共一題!!!全為選擇題,答案有1 2 3 4,輸入後按ENTER即可"<< endl;
cout << "題目:英雄聯盟德邦中最軟的人是?"<< endl;
cout << "答案一:歐拉夫 答案二:屁屁 答案三:索拉卡 答案四:泰達米爾"<< endl;
cout << "請作答:"<< endl;
cin >> x;
if(x == 1)
{
cout << "恭喜答錯";
}
else if(x == 2)
{
cout << "恭喜答錯";
}
else if(x == 3)
{
cout << "恭喜答對";
}
else if(x == 4)
{
cout << "恭喜答錯";
}
else
{
cout << "不要亂打";
}
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2