#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
void Start();
void GetResults();
int i, j, life, maxrand,n,h,d;
char c;
void Start() {
i = 0;
j = 0;
life = 0;
maxrand = 6;
cout << "这是游戏的难度,选一个吧:\n"; // the user has to select a difficutly level
cout << "1 : 简单 (0-15)\n";
cout << "2 : 中等 (0-30)\n";
cout << "3 : 困难 (0-50)\n";
cout << "4 : 地狱 (0-100)\n";
cout << "5 : 自虐 (0-10000)\n";
cout << "选择一个难度"<<endl;
c = 30;
cin >> c; // read the user's choice
cout << "\n";
switch (c) {
case '1':
maxrand = 15; // the random number will be between 0 and maxrand
break;
case '2':
maxrand = 30;
break;
case '3':
maxrand = 50;
break;
case '4':
maxrand = 10
DEV c++ 的猜数游戏(添加了两个模式 地狱 自虐 第一个开挂密码:123654 第二个:12365412)(DEVC++可行)
最新推荐文章于 2023-02-08 15:02:44 发布
这是一个使用DEV C++编写的猜数游戏,包含地狱和自虐两种难度模式。游戏内置外挂功能,开启外挂的密码分别为123654和12365412。
摘要由CSDN通过智能技术生成