標題:
switch程式示範 (一)
[打印本頁]
作者:
許婷芳
時間:
2019-8-16 16:42
標題:
switch程式示範 (一)
本帖最後由 許婷芳 於 2019-8-23 15:09 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int season;
re:
cout<<"請輸入季節(1.春 2.夏 3.秋 4.冬): ";
cin>>season;
switch(season)
{
case 1:
cout<<" 春 spring"<<endl;
break;
case 2:
cout<<" 夏 summer"<<endl;
break;
case 3:
cout<<" 秋 fall"<<endl;
break;
case 4:
cout<<" 冬 winter"<<endl;
break;
default:
cout<<"輸入錯誤"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蘇韋誠
時間:
2019-8-28 17:03
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2