用含有类和对象的c++写一段代码做个游戏
由于游戏类型和具体实现方式不确定,因此我将给出一个简单的示例代码,实现一个猜数字游戏。
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
class Game {
private:
int number;
int guess;
int attempts;
public:
Game() {
srand(time(NULL));
number = rand() % 100 + 1;
guess = 0;
attempts = 0;
}
void play() {
cout << "Welcome to the Guessing Game!" << endl;
cout << "I am thinking of a number between 1 and 100." << endl;
while (guess != number) {
cout << "Enter your guess: ";
cin >> guess;
if (guess < number) {
cout << "Too low. Guess again." << endl;
attempts++;
}
else if (guess > number) {
cout << "Too high. Guess again." << endl;
attempts++;
}
else {
attempts++;
cout << "You got it! It took you " << attempts << " attempts." << endl;
}
}
}
};
int main() {
Game game;
game.play();
return 0;
}
这个猜数字游戏中,我们定义了一个Game类,包含了数字、猜测、尝试次数等属性,以及play()方法,其主要逻辑是在while循环中,根据用户输入的猜测与随机生成的数字进行比较,提示用户猜测的结果,并记录猜测次数。当用户猜对数字时,输出结果并结束游戏。
在主函数中,我们创建了一个Game对象,并调用其play()方法,开始游戏
原文地址: https://www.cveoy.top/t/topic/fPrb 著作权归作者所有。请勿转载和采集!