c++生成一个0-100的真随机数的代码
时间: 2023-05-15 07:07:37 浏览: 242
c/C++实现0-100的随机数
5星 · 资源好评率100%
以下是生成0-100的真随机数的C代码:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int random_num;
srand(time(NULL)); // 设置随机数种子为当前时间
random_num = rand() % 101; // 生成0-100的随机数
printf("随机数为:%d\n", random_num);
return 0;
}
阅读全文