返回列表 發帖

if...else if...else 敘述 - 選擇題

利用if...else if...else敘述, 設計一有趣的選擇題.

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int answer;
  6.   cout<<"猜猜詩凱幾cm?";
  7.   cout<<"(1)12cm (2)50cm (3)125m (4)142cm"<<endl;
  8.   cout<<"請作答...";
  9.   cin>>answer;
  10.   cout<<endl;
  11.   if(answer==1)
  12.   {
  13.       cout<<"我不是小娃娃~";
  14.   }else if(answer==2)
  15.   {  
  16.       cout<<"我不是矮冬瓜!";
  17.   }else if(answer==3)
  18.   {
  19.       cout<<"我不是巨人!";
  20.   }else if(answer==4)
  21.   {
  22.       cout<<"這才像話!";
  23.   }
  24.   else
  25.   {
  26.       cout<<"輸入錯誤!";
  27.   }
  28.   cout<<endl;
  29.   system("pause");
  30.   return 0;
  31. }
複製代碼

TOP

#include<iostream>

using namespace std;

int main()

{

  int answer;

  cout<<"猜猜詩凱幾cm?";

  cout<<"(1)12cm (2)50cm (3)125m (4)142cm"<<endl;

  cout<<"請作答...";

  cin>>answer;

  cout<<endl;

  if(answer==1)

  {

      cout<<"我不是小娃娃~";

  }else if(answer==2)

  {  

      cout<<"我不是矮冬瓜!";

  }else if(answer==3)

  {

      cout<<"我不是巨人!";

  }else if(answer==4)

  {

      cout<<"這才像話!";

  }

  else

  {

      cout<<"輸入錯誤!";

  }

  cout<<endl;

  system("pause");

  return 0;

}

TOP

#include<iostream>

using namespace std;

int main()

{

  int answer;

  cout<<"猜猜詩凱幾cm?";

  cout<<"(1)12cm (2)50cm (3)125m (4)142cm"<<endl;

  cout<<"請作答...";

  cin>>answer;

  cout<<endl;

  if(answer==1)

  {

      cout<<"我不是小娃娃~";

  }else if(answer==2)

  {  

      cout<<"我不是矮冬瓜!";

  }else if(answer==3)

  {

      cout<<"我不是巨人!";

  }else if(answer==4)

  {

      cout<<"這才像話!";

  }

  else

  {

      cout<<"輸入錯誤!";

  }

  cout<<endl;

  system("pause");

  return 0;

}

TOP

刪除所有資料dev c++

TOP

#include<iostream>
using namespace std;
int main()
{
     int answer;
     cout<<"猜猜看黃崇維幾公分?"<<endl;
     cout<<"(1)52公分 (2)100公分 (3)134公分 (4)184公分"<<endl;
     cout<<"請作答...";
     cin>>answer;
     cout<<endl;
         if(answer==1)
         {
                    cout<<"我又不是小矮人~";
         }
         else if(answer==2)
         {
                    cout<<"我又不是矮冬瓜~";
         }
         else if(answer==3)
         {
                    cout<<"對嘛!這樣才像話!";
         }
         else if(answer==4)
         {
                    cout<<"我又不是大巨人!";
         }
         else
         {
                    cout<<"輸入錯誤!";
         }
    cout<<endl;
    system("pause");
    return 0;
}

TOP

林宥辰110248558789965982595

TOP

返回列表