標題:
switch 判斷式-選擇題2
[打印本頁]
作者:
王瑞喻
時間:
2019-6-12 17:40
標題:
switch 判斷式-選擇題2
本帖最後由 王瑞喻 於 2019-6-13 16:03 編輯
請利用switch判斷式作出以下的成果
[attach]6678[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
char ans;
cout<<"請輸入a,b或c:";
cin>>ans;
switch(ans)
{
case 'a':
cout<<"你剛剛輸入的是a"<<endl;
break;
case 'b':
cout<<"你剛剛輸入的是b"<<endl;
break;
case 'c':
cout<<"你剛剛輸入的是c"<<endl;
break;
default:
cout<<"沒有這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-6-16 08:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char ch;
re:
cout<<"請輸入a,b或c: ";
cin>>ch;
switch(ch)
{
case 'a':
cout<<"你剛剛輸入的是"<<ch<<endl;
break;
case 'b':
cout<<"你剛剛輸入的是"<<ch<<endl;
break;
case 'c':
cout<<"你剛剛輸入的是"<<ch<<endl;
break;
default:
cout<<"沒有這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-6-21 22:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char ans;
re:
cout<<"請輸入a、b或c:";
cin>>ans;
switch(ans)
{
case 'a':
cout<<"你剛剛輸入的是a"<<endl;
break;
case 'b':
cout<<"你剛剛輸入的是b"<<endl;
break;
case 'c':
cout<<"你剛剛輸入的是c"<<endl;
break;
default:
cout<<"沒這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉愷恩
時間:
2019-6-22 10:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
char ans;
cout<<"請輸入a,b或c:";
cin>>ans;
switch(ans)
{
case 'a':
cout<<"你剛輸入的是a"<<endl;
break;
case 'b':
cout<<"你剛輸入的是b"<<endl;
break;
case 'c':
cout<<"你剛輸入的是c"<<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:
char ans;
cout<<"請數入a,b,或c: ";
cin>>ans;
switch(ans)
{
case 'a':
cout<<"你剛剛輸入的是a"<<endl;
break;
case 'b':
cout<<"你剛剛輸入的是b"<<endl;
break;
case 'c':
cout<<"你剛剛輸入的是c"<<endl;
break;
default:
cout<<"別鬧了"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-6-22 10:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
char ans;
cout<<"請輸入a,b或c: ";
cin>>ans;
switch(ans)
{
case 'a':
cout<<"你剛剛輸入的是a"<<endl;
break;
case 'b':
cout<<"你剛剛輸入的是b"<<endl;
break;
case 'c':
cout<<"你剛剛輸入的是c"<<endl;
break;
default:
cout<<"沒這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-6-22 10:38
本帖最後由 王翎璇 於 2019-6-22 11:00 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
char m;
cout<<"請輸入a,b或c:";
cin>>m;
switch(m)
{
case'a':
cout<<"你剛剛輸入的是a"<<endl;
break;
case'b':
cout<<"你剛剛輸入的是b"<<endl;
break;
case'c':
cout<<"你剛剛輸入的是c"<<endl;
break;
default:
cout<<"沒有這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-6-27 17:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char ans;
re:
cout<<"請輸入a、b或c:";
cin>>ans;
switch(ans)
{
case 'a':
cout<<"你剛剛輸入的是a"<<endl;
break;
case 'b':
cout<<"你剛剛輸入的是b"<<endl;
break;
case 'c':
cout<<"你剛剛輸入的是c"<<endl;
break;
default:
cout<<"沒這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-6-27 17:25
本帖最後由 王瑞喻 於 2019-6-27 17:26 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char ans;
re:
cout<<"請輸入a,b或c: ";
cin>>ans;
switch(ans)
{
case 'a':
cout<<"您剛才輸入的是a "<<endl;
break;
case 'b':
cout<<"您剛才輸入的是b "<<endl;
break;
case 'c':
cout<<"您剛才輸入的是c "<<endl;
break;
default:
cout<<"沒有這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-6-27 17:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char ans;
re:
cout<<"請輸入a、b或c:";
cin>>ans;
switch(ans)
{
case 'a':
cout<<"你剛剛輸入的是a"<<endl;
break;
case 'b':
cout<<"你剛剛輸入的是b"<<endl;
break;
case 'c':
cout<<"你剛剛輸入的是c"<<endl;
break;
default:
cout<<"沒這個選項"<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2