標題:
switch 判斷式-選擇題1
[打印本頁]
作者:
王瑞喻
時間:
2019-6-12 17:17
標題:
switch 判斷式-選擇題1
本帖最後由 王瑞喻 於 2019-6-13 01:54 編輯
請利用switch判斷式作出以下的成果
[attach]6674[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int ans;
cout<<"請輸入1,2或3:";
cin>>ans;
switch(ans)
{
case 1:
cout<<"你剛剛輸入的是1"<<endl;
break;
case 2:
cout<<"你剛剛輸入的是2"<<endl;
break;
case 3:
cout<<"你剛剛輸入的是3"<<endl;
break;
default:
cout<<"沒有這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉愷恩
時間:
2019-6-15 11:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int ans;
re:
cout<<"請輸入1,2或3:";
cin>>ans;
switch(ans)
{
case 1:
cout<<"你剛剛輸入的是1"<<endl;
break;
case 2:
cout<<"你剛剛輸入的是2"<<endl;
break;
case 3:
cout<<"你剛剛輸入的是3"<<endl;
break;
default:
cout<<"沒有這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-6-16 08:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num;
re:
cout<<"請輸入1,2或3: ";
cin>>num;
switch(num)
{
case 1 ... 3:
cout<<"你剛剛輸入的是"<<num<<endl;
break;
default:
cout<<"沒有這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曾宥程
時間:
2019-6-22 10:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int ans;
cout<<"請數入1,2,或3: ";
cin>>ans;
switch(ans)
{
case 1:
cout<<"你剛剛輸入的是1"<<endl;
break;
case 2:
cout<<"你剛剛輸入的是2"<<endl;
break;
case 3:
cout<<"你剛剛輸入的是3"<<endl;
break;
default:
cout<<"別鬧了"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-6-22 10:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int ans;
cout<<"請輸入1,2或3: ";
cin>>ans;
switch(ans)
{
case 1:
cout<<"你剛剛輸入的是1"<<endl;
break;
case 2:
cout<<"你剛剛輸入的是2"<<endl;
break;
case 3:
cout<<"你剛剛輸入的是3"<<endl;
break;
default:
cout<<"沒這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-6-22 10:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int ans;
cout<<"請輸入1,2或3:";
cin>>ans;
switch(ans)
{
case 1:
cout<<"你剛剛輸入的是1"<<endl;
break;
case 2:
cout<<"你剛剛輸入的是2"<<endl;
break;
case 3:
cout<<"你剛剛輸入的是3"<<endl;
break;
default:
cout<<"沒有這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-6-27 17:14
本帖最後由 蔡少宇 於 2019-6-27 17:02 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int day;
re:
cout<<"請你運動幾天(上週): ";
cin>>day;
switch(day)
{
case 0 ... 2:
cout<<"有點少...要繼續加油喔! "<<endl;
break;
case 3 ... 4:
cout<<"還不錯...但還要繼續努力! "<<endl;
break;
case 5 ... 7:
cout<<"厲害喔!你就是標準的健康寶寶代言人! "<<endl;
break;
default:
cout<<"你是不知道一週有幾天嗎?你這個無知的人!"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-6-27 17:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int ans;
re:
cout<<"請輸入1、2或3:";
cin>>ans;
switch(ans)
{
case 1:
cout<<"你剛剛輸入的是1"<<endl;
break;
case 2:
cout<<"你剛剛輸入的是2"<<endl;
break;
case 3:
cout<<"你剛剛輸入的是3"<<endl;
break;
default:
cout<<"沒這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-6-27 17:16
本帖最後由 蔡少宇 於 2019-6-27 17:02 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int ans;
re:
cout<<"請輸入1,2或3: ";
cin>>ans;
switch(ans)
{
case 1:
cout<<"您剛才輸入的是1 "<<endl;
break;
case 2:
cout<<"您剛才輸入的是2 "<<endl;
break;
case 3:
cout<<"您剛才輸入的是3 "<<endl;
break;
default:
cout<<"沒有這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2