標題:
[作業] 利用 if…else if…else 敘述重新改寫 switch 程式碼
[打印本頁]
作者:
tonyh
時間:
2012-4-25 13:43
標題:
[作業] 利用 if…else if…else 敘述重新改寫 switch 程式碼
作者:
蔡岳凌
時間:
2012-4-25 14:07
#include<iostream>
using namespace std;
int main()
{
int answer;
cout<<"猜猜看岳凌幾公斤重?"<<endl;
cout<<"(1)100公斤 (2)10公斤 (3)50公斤 (4)32公斤"<<endl;
cout<<"請做答: ";
cin>>answer;
if(answer==1)
{
cout<<"我不是豬"<<endl;
}else if(answer==2)
{
cout<<"我不是人乾"<<endl;
}else if(answer==3)
{
cout<<"很接近了"<<endl;
}else if(answer==4)
{
cout<<"賓果! 答對了!"<<endl;
}else
{
cout<<"輸入錯誤!!!笨笨!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃睿帆
時間:
2012-5-2 13:09
#include<iostream>
using namespace std;
int main()
{
int answer;
cout<<"猜猜看睿帆幾公斤重?"<<endl;
cout<<"(1)1000公斤 (2)1公斤 (3)50公斤 (4)32公斤"<<endl;
cout<<"請做答: ";
cin>>answer;
if(answer==1)
{
cout<<"打你喔!我又不是豬"<<endl;
}else if(answer==2)
{
cout<<"我不是紙片人!!"<<endl;
}else if(answer==3)
{
cout<<"恭喜你!答錯了"<<endl;
}else if(answer==4)
{
cout<<"答對了,你好棒!"<<endl;
}else
{
cout<<"答錯了!!笨笨呆!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇冠鈞
時間:
2012-5-2 13:10
#include<iostream>
using namespace std;
int main()
{
int answer;
cout<<"猜猜看冠鈞幾公斤重?"<<endl;
cout<<"(1)100公斤 (2)108公斤 (3)50公斤 (4)32.5公斤"<<endl;
cout<<"請做答: ";
cin>>answer;
if(answer==1)
{
cout<<"我不是豬"<<endl;
}else if(answer==2)
{
cout<<"我不是人乾"<<endl;
}else if(answer==3)
{
cout<<"小雞雞爆炸了"<<endl;
}else if(answer==4)
{
cout<<"賓果! 答對了!"<<endl;
}else
{
cout<<"力害"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2