用C++帮我写一个自定义函数,要求这个自定义函数里面实现一个真随机数,并返回一个int类型的真随机数。
时间: 2023-03-16 07:44:24 浏览: 102
C语言/C++如何生成随机数
5星 · 资源好评率100%
#include <stdio.h>
#include <stdlib.h>
#include <time.h>int getRandomInt()
{
srand((unsigned)time(NULL));
return rand();
}int main()
{
printf("%d\n", getRandomInt());
return 0;
}
阅读全文