91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++實現乒乓球比分判定的實例分析

發布時間:2020-07-21 11:25:05 來源:億速云 閱讀:654 作者:小豬 欄目:編程語言

這篇文章主要講解了C++實現乒乓球比分判定的實例分析,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

本文實例為大家分享了C++實現乒乓球比分判定的具體代碼,供大家參考,具體內容如下

編寫程序判斷乒乓球比賽的結果:輸入雙方比分,輸出誰勝誰負

此題的難度分3個級別

1、輸入的是一局比賽結束時的比分;
2、輸入的不僅可能是一局比賽結束時的比分,還有可能是比賽進行過程中的比分;
3、輸入任意兩個非負整數

下面選擇第三種難度完成:

#include <iostream>

using namespace std;

int main() {
 int player1, player2;

 cout << "input two scores: " << endl;
 cin >> player1 >> player2;

 if (player1 < 0 || player2 < 0) cout << "wrong input" << endl;
 else {
  if (player1 == 11 && player2 < 10) cout << "player1 wins" << endl;
  if (player2 == 11 && player1 < 10) cout << "player2 wins" << endl;
  if (player1 < 11 && player2 < 11) cout << "not over" << endl;

  if (player1 > 10 && player2 > 10) {
   if ((player1 - player2) > 2 || (player2 - player1) > 2) cout << "wrong input" << endl;
   if ((player1 - player2) == 2) cout << "player1 wins" << endl;
   if ((player2 - player1) == 2) cout << "player2 wins" << endl;
   if ((player1 - player2) <= 1 || (player2 - player1) <= 1) cout << "not over" << endl;
  }
 }

 return 0;
}

試題分析:

①考察初學者的邏輯分析;
②考察基本語法if else的熟練程度;
③將日常生活作為程序設計的載體,寓教于樂;

補充:C++乒乓球比賽代碼

兩個乒乓球隊進行比賽,各處三人,甲隊為ABC,乙隊為XYZ,其中A不和X比賽,C不和X,Z,比賽,找出三隊賽手的名單

#include "stdafx.h"
#include<iostream>
using namespace std;

int main()
{
 char i, j, k;
 for (i = 'X'; i <= 'Z'; i++) {
 for (j = 'X'; j <= 'Z'; j++)
 {
 if (i != j) {
 for (k = 'X'; k <= 'Z';k++) {
  if (i !=k&&j != k) {
  if (i != 'X'&&k != 'X'&& k != 'Z') {
  cout << "A-----" << i << endl << "B-----" << j << endl<< "C-----" << k << endl;
  }
  }
 }
 }
 }
 }
 system("pause");
 return 0;
}

看完上述內容,是不是對C++實現乒乓球比分判定的實例分析有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

申扎县| 环江| 融水| 内丘县| 和林格尔县| 嘉黎县| 江门市| 专栏| 桂平市| 古田县| 黄龙县| 肥东县| 疏勒县| 遂昌县| 洪湖市| 丹江口市| 岚皋县| 阿合奇县| 林口县| 松阳县| 井冈山市| 仁寿县| 册亨县| 玛纳斯县| 陕西省| 读书| 庆城县| 开远市| 海晏县| 南岸区| 无棣县| 丹阳市| 台北市| 浏阳市| 刚察县| 定陶县| 湟源县| 云霄县| 洛浦县| 平湖市| 金阳县|