应该是头文件没有包含。time函数加<ctime> srand和rand函数加<cstdlib> 你应该把整个文件贴出来。
eadfadsfafdfafdadf
#include <iostream> #include <cstdlib> #include <ctime> int main() { // 设置种子为当前时间 srand(static_cast<unsigned int>(time(0))); // 生成并输出10个随机数 for (int i = 0; i < 10; i++) { int randomNum = rand(); std::cout << randomNum << std::endl; } return 0; ...