您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要讲解了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++实现乒乓球比分判定的实例分析有进一步的了解,如果还想学习更多内容,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。