#include <iostream>
#include <cstdlib> // 包含生成随机数所需的头文件
#include <ctime> // 包含用于种子生成的头文件
int main() {
// 设置种子
srand(static_cast<unsigned int>(time(0)));
// 生成1~100之间的随机数
int randomNumber = rand() % 100 + 1;
// 输出随机数
std::cout << "随机数为:" << randomNumber << std::endl;
return 0;
}