• C++——基础复习——双色球


    跟着哔站的视频复习一遍基础知识,根据老师的思路写双色球项目。相较老师的程序加入了一些功能。没有用到模板知识,欢迎交流。

    1、6个红球1个蓝球,红球号码1-33,号码不重复;篮球号码1-15.

    2、自选号码功能:要甄别号码是否重复,用了一个数组标记号码是否已出现;越界或者重复情况,清空缓冲区内容,重新输入。掌握了cin.fail()、cin.clear()、cin.ignore(numeric_limits::max(),'\n')几个知识点。每次和用户交互后都要注意缓冲区遗留内容会影响后续输入的可能性。

    3、机选号码功能:同样要甄别号码是否重复,使用数组存放号码源,获得随机下标后,取号码,将剩余的号码复制到新数组中,更新号码源。

    4、加入了延时开奖功能和倒计时功能:引入了thread中this_thread命名空间下sleep_for()休眠函数;chrono头文件对于时间处理更加便捷。chrono::seconds(1)表示1秒。

    5、打印函数中,利用sstream头文件中的ostringstream类创建字符串流,将数组中的内容加入字符串并利用iomanip头文件来控制输出格式,最后获取ostringstream::str()字符串。

    上代码:

    1. #include
    2. using namespace std;
    3. #include"PlayGame.h"
    4. #include
    5. #include
    6. int main() {
    7. srand((unsigned int)time(NULL));
    8. playgame();
    9. return 0;
    10. }
    1. #pragma once
    2. #define COUNTBALL 7
    3. #define REDBALLRANGE 33
    4. #define BLUEBALLRANGE 15
    5. void playgame(); //主程序函数
    6. int GetNumber(); //读取数字的工具函数
    7. int* GetOptionalNum(); //自选号码函数
    8. int* GetRandomNum(); //机选号码函数
    9. void printNumBall(int* numball,int len); //打印函数
    10. int* GetWinNum(); //获得中奖号码
    11. void Mysort(int* numball, int len); //排序函数
    12. void BonusCaculation(int* numball, int len,int* WinNum); //开奖函数
    1. #include "PlayGame.h"
    2. #include
    3. using namespace std;
    4. #include
    5. #include
    6. #include
    7. #include
    8. void playgame()
    9. {
    10. int ExitFlag = 0;
    11. while (!ExitFlag) {
    12. cout << "*********************" << endl;
    13. cout << "1.自选号码" << endl;
    14. cout << "2.机选号码" << endl;
    15. cout << "0.退出系统" << endl;
    16. cout << "*********************" << endl;
    17. int choice = GetNumber();
    18. int* numball = NULL;
    19. switch (choice) {
    20. case 0:
    21. ExitFlag = 1;
    22. break;
    23. case 1:
    24. numball = GetOptionalNum();
    25. break;
    26. case 2:
    27. numball = GetRandomNum();
    28. break;
    29. default:
    30. break;
    31. }
    32. if (numball) {
    33. cout << "你选的号码是:\t";
    34. printNumBall(numball, COUNTBALL);
    35. cout << "距离开奖还有5秒" << endl;
    36. int sec = 5;
    37. while (sec) {
    38. cout << sec << endl;
    39. this_thread::sleep_for(chrono::seconds(1));
    40. sec--;
    41. }
    42. cout << "中奖号码是:\t";
    43. int *WinNum = GetWinNum();
    44. printNumBall(WinNum, COUNTBALL);
    45. BonusCaculation(numball, COUNTBALL, WinNum);
    46. }
    47. system("pause");
    48. system("cls");
    49. }
    50. }
    51. //数字读取函数
    52. int GetNumber()
    53. {
    54. int res = -1;
    55. cin >> res;
    56. while (cin.fail()) {
    57. cin.clear();
    58. cin.ignore(1);
    59. cin >> res;
    60. }
    61. return res;
    62. }
    63. //用户输入自选号,
    64. int * GetOptionalNum()
    65. {
    66. int* numball = new int[COUNTBALL]; //申请双色球数组,存放用户自选号
    67. cout << "请输入六个红球数字(1~33):" << endl;
    68. int numflag[REDBALLRANGE+1] = { 0 }; //标记是否重复1表示已出现,0表示未出现
    69. for (int i = 0; i < COUNTBALL-1; i++) { //循环读取好吗,前6个是红球
    70. numball[i] = GetNumber();
    71. //判断号码是否出界和重复
    72. if ((numball[i] >= 1 && numball[i] <= REDBALLRANGE && numflag[numball[i]] == 1) || numball[i] < 1 || numball[i]>REDBALLRANGE) {
    73. cout << "红球输入不合法,请重新输入:" << endl;
    74. cin.ignore(numeric_limits::max(),'\n'); //如果重复忽略掉后面所有输入,直至回车
    75. i = -1; //重置读取循环,重新读取
    76. for (int& elem : numflag) { //重置重复标志
    77. elem = 0;
    78. }
    79. }
    80. else if (numball[i] >= 1 && numball[i] <= REDBALLRANGE) { //不重复、不越界,正常读取存放
    81. numflag[numball[i]] = 1; //已存放的号码球重复标志设置为1
    82. }
    83. }
    84. cin.ignore(numeric_limits::max(), '\n'); //忽略掉缓冲区多余内容,避免影响后续输入
    85. cout << "请输入蓝球数字(1~15):";
    86. numball[6] = GetNumber(); //读取蓝球号码
    87. while (!(numball[6] >= 1 && numball[6] <= BLUEBALLRANGE)) {
    88. cout << "蓝球输入不合法,请重新输入:";
    89. numball[6] = GetNumber();
    90. }
    91. cin.ignore(numeric_limits::max(), '\n');
    92. Mysort(numball, COUNTBALL - 1); //红球排序
    93. return numball;
    94. }
    95. //获得一组机选号
    96. int * GetRandomNum()
    97. {
    98. int* numball = new int[COUNTBALL]; //申请双色球数组,存放机选号
    99. int* numsource = new int[REDBALLRANGE]; //申请一个数组,存放号码源,机选号从号码源读取
    100. for (int i = 0; i < REDBALLRANGE; i++) { //初始化号码源 1-33
    101. numsource[i] = i + 1;
    102. }
    103. for (int i = 0; i < COUNTBALL - 1; i++) { //生成6个红球随机号码
    104. int index = rand() % (REDBALLRANGE - i); //生成号码源的随机下标
    105. numball[i] = numsource[index]; //从号码源读取随机下标位置的号码
    106. int *temp = new int[REDBALLRANGE - i - 1]; //申请一个新数组,比号码源少一个元素
    107. for (int j = 0,k = 0; j < REDBALLRANGE - i - 1; j++,k++) { //将号码源复制到新数组
    108. if (k != index) {
    109. temp[j] = numsource[k];
    110. }
    111. else { //当复制到已读取过的元素跳过
    112. temp[j] = numsource[++k];
    113. }
    114. }
    115. delete numsource;
    116. numsource = temp;
    117. }
    118. numball[6] = rand() % BLUEBALLRANGE + 1;
    119. Mysort(numball, COUNTBALL - 1); //红球排序
    120. return numball;
    121. }
    122. //打印双色球
    123. void printNumBall(int * numball, int len)
    124. {
    125. ostringstream oss;
    126. for (int i = 0; i < len; i++) {
    127. oss << setw(2) << setfill('0') << numball[i] << " ";
    128. }
    129. string str = oss.str();
    130. cout << str << endl;
    131. }
    132. int * GetWinNum()
    133. {
    134. return GetRandomNum();
    135. }
    136. //从小到大排序
    137. void Mysort(int * numball, int len)
    138. {
    139. //选择排序
    140. //for (int i = 0; i < len - 1; i++) {
    141. // int minindex = i;
    142. // int j = 0;
    143. // for (j = i + 1; j < len; j++) {
    144. // if (numball[j] < numball[i]) {
    145. // minindex = j;
    146. // }
    147. // }
    148. // if (minindex != i) {
    149. // int temp = numball[i];
    150. // numball[i] = numball[minindex];
    151. // numball[minindex] = temp;
    152. // }
    153. //}
    154. //冒泡排序
    155. for (int i = 0; i < len ; i++) {
    156. for (int j = 0; j < len - 1 - i; j++) {
    157. if (numball[j] > numball[j + 1]) {
    158. int temp = numball[j];
    159. numball[j] = numball[j + 1];
    160. numball[j + 1] = temp;
    161. }
    162. }
    163. }
    164. }
    165. //+--------------------------------------------+
    166. //|-------一等奖:6+1-----------500000元-------|
    167. //|-------二等奖:6或者5+1------200000元-------|
    168. //|-------三等奖:5或者4+1------50000 元-------|
    169. //|-------四等奖:4或者3+1------5000 元-------|
    170. //|-------五等奖:3或者2+1------500 元-------|
    171. //|-------六等奖:2或者1+1------50 元-------|
    172. //|-------七等奖:1或者1--------5 元-------|
    173. //|--------------------------------------------|
    174. //
    175. void BonusCaculation(int * numball, int len, int* WinNum)
    176. {
    177. int cnt = 0, blue = 0, res = 0;
    178. for (int i = 0; i < len - 1; i++) {
    179. if (numball[i] == WinNum[i]) {
    180. cnt++;
    181. }
    182. }
    183. if (numball[len - 1] == WinNum[len - 1]) {
    184. blue = 1;
    185. }
    186. int awards[7] = { 500000,200000,50000,5000,500,50,5 };
    187. res = cnt + blue;
    188. if (res) {
    189. cout << "恭喜你,中" << 8 - res << "等奖,奖金" << awards[7 - res] << "元" << endl;
    190. }
    191. else {
    192. cout << "很遗憾,你没有中奖" << endl;
    193. }
    194. }

  • 相关阅读:
    Java开发者的Python快速进修指南:掌握T检验
    Window10安装ruby
    代码质量、重构、可测试性、解耦杂谈
    MongoDB基础【学习笔记】
    前端最强面试宝典 - JS 篇之 ES6
    vite创建vue+vue-router+vuex 项目
    Python pathlib模块
    windows11 如何关闭 vbs
    【Python+爬虫】 新冠肺炎疫情实时监控可视化系统
    GemBox.Bundle 47.0.1315 最新Crack
  • 原文地址:https://blog.csdn.net/qq_42106610/article/details/136276380