devc++使用c++语言小游戏
时间: 2023-12-31 15:24:47 浏览: 127
很抱歉,但是根据提供的引用内容,作者似乎只提供了在Windows操作系统上使用devC++编写的小游戏。因此,如果你使用的是其他操作系统,如Linux,可能无法运行作者提供的代码。建议你尝试在适合你的操作系统上使用其他编译器或IDE来编写和运行C++小游戏。以下是一个使用C++编写的简单猜数字游戏的例子:
```cpp
#include <iostream>
#include <cstdlib>
#include <ctime>
int main() {
srand(time(0)); // 设置随机数种子
int secretNumber = rand() % 100 + 1; // 生成1到100之间的随机数
int guess;
int attempts = 0;
std::cout << "猜数字游戏开始!" << std::endl;
do {
std::cout << "请输入一个1到100之间的整数:";
std::cin >> guess;
attempts++;
if (guess > secretNumber) {
std::cout << "太大了!" << std::endl;
} else if (guess < secretNumber) {
std::cout << "太小了!" << std::endl;
} else {
std::cout << "恭喜你猜对了!" << std::endl;
std::cout << "你猜了" << attempts << "次。" << std::endl;
}
} while (guess != secretNumber);
return 0;
}
```
阅读全文