返回列表 發帖

011_輸贏判斷

宣告兩個變數來存放兩隊的比賽成績比較兩隊的成績,如果 A 隊分數較高,則顯示 "A 隊獲勝",否則如果 B 隊分數較高,則顯示 "B 隊獲勝",否則顯示"平手"

  1. 請輸入 A 隊分數:10
  2. 請輸入 B 隊分數:5
  3. A 隊獲勝
  4. 請按任意鍵繼續...
  5. 請輸入 A 隊分數:3
  6. 請輸入 B 隊分數:6
  7. B 隊獲勝
  8. 請按任意鍵繼續...
  9. 請輸入 A 隊分數:4
  10. 請輸入 B 隊分數:4
  11. 平手
複製代碼

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main ()
  5. {
  6.         while(true)
  7.         {
  8. int a;
  9. int b;
  10. cout<<"請輸入 A 隊分數:";
  11. cin>> a;
  12. cout<<"請輸入 B 隊分數:";
  13. cin>> b;
  14.        
  15.         if(a > b)
  16.         {
  17.                 cout<<"A 隊獲勝"<<endl;
  18.        
  19.         }       
  20.                
  21.         else if (b > a)       
  22.                 {
  23.                         cout<<"B 隊獲勝"<<endl;
  24.                 }
  25.                 else
  26.                 {
  27.                         cout <<"平手"<<endl;
  28.                 }
  29.                
  30.                 system ("pause");
  31.         }
  32.         return 0;
  33. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.         while (true)
  7.         {
  8.                 int a;
  9.                 int b;
  10.                 cout<<"請輸入 A 隊分數:";
  11.                 cin>>a;
  12.                 cout<<"請輸入 B 隊分數:";
  13.                 cin>>b;
  14.                 if (a>b)
  15.                 {
  16.                         cout<<"A 隊獲勝"<<endl;
  17.                 }
  18.                 else if (a<b)
  19.                 {
  20.                         cout<<"B 隊獲勝"<<endl;
  21.                 }
  22.                 else
  23.                 {
  24.                         cout<<"平手"<<endl;
  25.                 }
  26.                 system ("pause");
  27.         }
  28.         return 0;
  29. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()

  5. {

  6.        while(true)
  7.        {
  8.            int a;
  9.            int b;
  10.            cout << "請輸入 A 隊分數:";
  11.            cin >> a;
  12.            cout << "請輸入 B 隊分數:";
  13.            cin >> b;
  14.            
  15.            if (a>b)
  16.            {
  17.                    cout << "A隊獲勝" << endl;
  18.            }
  19.            else if (b>a)
  20.            {
  21.                    cout << "B隊獲勝" << endl;
  22.            }
  23.            else
  24.            {
  25.                    cout << "平手" << endl;
  26.            }
  27.        }
  28.         return 0;

  29. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         while(true)
  7.         {
  8.                 int a;
  9.                 int b;
  10.                 cout<<"請輸入A隊分數 :";
  11.                 cin>>a;
  12.                 cout<<"請輸入b隊分數 :";
  13.                 cin>>b;
  14.                 if( a > b )
  15.                 {
  16.                         cout<<"A 隊獲勝"<<endl;
  17.                 }
  18.                 else if (b>a)
  19.                 {
  20.                         cout<<"b 隊獲勝"<<endl;
  21.                 }
  22.                 else
  23.                 {
  24.                         cout<<"平手"<<endl;
  25.                 }
  26.        
  27.                
  28.                 system("pause");
  29.         }
  30.         return 0;
  31. }
複製代碼

TOP

返回列表