標題:
[作業] switch 判斷式 (五)
[打印本頁]
作者:
方浩葦
時間:
2024-6-5 13:57
標題:
[作業] switch 判斷式 (五)
利用 switch 判斷式,完成如下之練習:
判斷條件為:
運動0~2天 有點少...加油!
運動3~4天 還不錯,繼續努力!
運動5~7天 健康寶寶代言人
不在以上範圍 你不知道一週有幾天嗎?
本帖隱藏的內容需要回復才可以瀏覽
作者:
洪榮辰
時間:
2024-6-8 15:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int time;
cout<<"請問你上週總共運動幾天?";
cin>>time;
switch(time)
{
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;
}
複製代碼
作者:
劉奕劭
時間:
2024-6-8 16:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int ans;
re:
cout<<"請問你上週運動幾天?"<<endl;
cin>>ans;
switch(ans)
{
case 0 ... 2:
cout<<"有點少...加油!"<<endl;
break;
case 3 ... 4:
cout<<"還不錯,繼續努力!"<<endl;
break;
case 5 ... 7:
cout<<"健康寶寶代言人"<<endl;
break;
default:
cout<<"你不知道一週有幾天嗎?"<<endl;
break;
}
goto re;
system("pause");
return 0;
}
作者:
高湘庭
時間:
2024-6-9 21:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x;
re:
cout<<"請問你上週總共運動幾天?";
cin>>x;
switch(x)
{
case 0 ... 2:
cout<<"有點少...加油!"<<endl;
break;
case 3 ... 4:
cout<<"還不錯,繼續努力!"<<endl;
break;
case 5 ... 7:
cout<<"健康寶寶代言人"<<endl;
break;
default:
cout<<"你不知道一週有幾天嗎?"<<endl;
break;
}
cout<<endl;
goto re;
system ("pause");
return 0;
}
作者:
陳妍蓁
時間:
2024-6-10 15:05
#include <iostream>
#include<cstdlib>
using namespace std;
int main() {
int d;
re:
cout<<"請問你上週共運動幾天?";
cin>>d;
switch(d){
case 0 ... 2:
cout<<"有點少...加油!"<<endl;
break;
case 3 ... 4:
cout<<" 還不錯,繼續努力!"<<endl;
break;
case 5 ... 7:
cout<<"健康寶寶代言人"<<endl;
break;
default:
cout<<"你不知道一週有幾天嗎?"<<endl;
break;
}
goto re;
system("pause");
return 0;
}
作者:
林少謙
時間:
2024-6-10 22:55
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
re:
int x;
cout<<"請問你上周共運動幾天呢?";
cin>>x;
switch(x)
{
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;
}
作者:
李唯銘
時間:
2024-6-14 22:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int ans;
re:
cout<<"請問你上週運動幾天?"<<endl;
cin>>ans;
switch(ans)
{
case 0 ... 2:
cout<<"有點少...加油!"<<endl;
break;
case 3 ... 4:
cout<<"還不錯,繼續努力!"<<endl;
break;
case 5 ... 7:
cout<<"健康寶寶代言人"<<endl;
break;
default:
cout<<"你不知道一週有幾天嗎?"<<endl;
break;
}
goto re;
system("pause");
return 0;
}
作者:
李偈睿
時間:
2024-6-15 15:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int time;
cout<<"請問你上周總共運動幾天"<<endl;
cin>>time;
switch(time)
{
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2