返回列表 發帖

[作業] switch 判斷式 (五)

利用 switch 判斷式,完成如下之練習:



判斷條件為:
運動0~2天   有點少...加油!
運動3~4天   還不錯,繼續努力!
運動5~7天   健康寶寶代言人
不在以上範圍   你不知道一週有幾天嗎?

本帖隱藏的內容需要回復才可以瀏覽

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int time;
  8.         cout<<"請問你上周總共運動幾天"<<endl;
  9.         cin>>time;
  10.         switch(time)
  11.         {
  12.                 case 0 ... 2:
  13.         cout<<"有點少...加油!"<<endl;
  14.         break;
  15.     case 3 ... 4:
  16.         cout<<"還不錯,繼續努力!"<<endl;
  17.         break;
  18.     case 5 ... 7:
  19.         cout<<"健康寶寶代言人"<<endl;
  20.         break;
  21.     default:
  22.         cout<<"你不知道一週有幾天嗎?"<<endl;
  23.         }
  24.         cout<<endl;
  25.                
  26.     goto re;
  27.     system("pause");
  28.     return 0;
  29. }
複製代碼

TOP

#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;
}

TOP

#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;
}

TOP

#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;
}

TOP

#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;

}

TOP

#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;
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int time;
  8.     cout<<"請問你上週總共運動幾天?";
  9.     cin>>time;
  10.     switch(time)
  11.     {
  12.     case 0 ... 2:
  13.         cout<<"有點少...加油!"<<endl;
  14.         break;
  15.     case 3 ... 4:
  16.         cout<<"還不錯,繼續努力!"<<endl;
  17.         break;
  18.     case 5 ... 7:
  19.         cout<<"健康寶寶代言人"<<endl;
  20.         break;
  21.     default:
  22.         cout<<"你不知道一週有幾天嗎?"<<endl;
  23.         }
  24.         cout<<endl;
  25.         goto re;
  26.         system("pause");
  27.         return 0;
  28. }
複製代碼

TOP

返回列表