溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C++實(shí)現(xiàn)乒乓球比分判定的實(shí)例分析

發(fā)布時(shí)間:2020-07-21 11:25:05 來(lái)源:億速云 閱讀:654 作者:小豬 欄目:編程語(yǔ)言

這篇文章主要講解了C++實(shí)現(xiàn)乒乓球比分判定的實(shí)例分析,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

本文實(shí)例為大家分享了C++實(shí)現(xiàn)乒乓球比分判定的具體代碼,供大家參考,具體內(nèi)容如下

編寫(xiě)程序判斷乒乓球比賽的結(jié)果:輸入雙方比分,輸出誰(shuí)勝誰(shuí)負(fù)

此題的難度分3個(gè)級(jí)別

1、輸入的是一局比賽結(jié)束時(shí)的比分;
2、輸入的不僅可能是一局比賽結(jié)束時(shí)的比分,還有可能是比賽進(jìn)行過(guò)程中的比分;
3、輸入任意兩個(gè)非負(fù)整數(shù)

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

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

試題分析:

①考察初學(xué)者的邏輯分析;
②考察基本語(yǔ)法if else的熟練程度;
③將日常生活作為程序設(shè)計(jì)的載體,寓教于樂(lè);

補(bǔ)充:C++乒乓球比賽代碼

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

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

看完上述內(nèi)容,是不是對(duì)C++實(shí)現(xiàn)乒乓球比分判定的實(shí)例分析有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI