掷骰子游戏练习c++语言
时间: 2023-12-05 08:39:02 浏览: 122
以下是一个简单的掷骰子游戏的C++代码示例:
```c++
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main() {
int dice, guess;
srand(time(0)); // 用当前时间作为随机数种子
dice = rand() % 6 + 1; // 生成1-6之间的随机数
cout << "猜测掷出的点数(1-6):";
cin >> guess;
if (guess < 1 || guess > 6) {
cout << "输入无效!" << endl;
return 0;
}
if (guess == dice) {
cout << "恭喜你,猜对了!" << endl;
} else {
cout << "很遗憾,你猜错了。" << endl;
cout << "掷出的点数是:" << dice << endl;
}
return 0;
}
```
阅读全文