当前位置:网站首页>Generate random number
Generate random number
2022-04-23 06:36:00 【*Flowers bloom on the street】
Generating random numbers requires rand() function , This function requires a header file stdlib.h
If only rand() function , The generated random number is pseudo-random number , because rand() Function before generating a random number , The seed of generating pseudo-random number sequence provided by the system is required ,rand Based on the value of this seed, a series of random numbers are generated . If the seed provided by the system does not change , Every time you call rand The sequence of pseudo-random numbers generated by function is the same . If you want to generate different random numbers every time , Need to change random seed , Time can be used to change the random seed of the system .
int rand_()// Generate random numbers
{
time_t ts;
unsigned int n = time(&ts);// Acquisition time
srand(n);// Initialize random seed
int num = rand() % 100 + 1;// Random number range 1—100
return num;
}
版权声明
本文为[*Flowers bloom on the street]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230547207248.html
边栏推荐
猜你喜欢

【UDS统一诊断服务】四、诊断典型服务(1)— 诊断和通信管理功能单元

Installation of GCC, G + +, GDB

1007 go running (hdu6808) in the fourth game of 2020 Hangzhou Electric Multi school competition

Call procedure of function

【UDS统一诊断服务】(补充)五、ECU bootloader开发要点详解 (1)

【UDS统一诊断服务】四、诊断典型服务(3)— 读故障信息功能单元(存储数据传输功能单元)

基于Sentinel+Nacos 对Feign Client 动态添加默认熔断规则

for()循环参数调用顺序

Robocode教程4——Robocode的游戏物理

ArcGIS license错误-15解决方法
随机推荐
【UDS统一诊断服务】一、诊断概述(2)— 主要诊断协议(K线和CAN)
The most practical chrome plug-in
Object转Json差异之Gson fastJson jackson 修改字段名
爬取手游网站游戏详情和评论(MQ+多线程)
搭建jpress个人博客
Rust:如何 match 匹配 String 字符串?
Linux 用rpm的方式安装mysql(超简单)
A solution to replace not in in SQL
Rust:在线程池中共享变量
识别验证码
Object array and object pointer
Solution to the trial of ycu Blue Bridge Cup programming competition in 2021
Common shortcut keys of IDE
进程管理命令
Class inheritance and derivation
对象的动态建立和释放,赋值和复制
队列解决约瑟夫问题
【UDS统一诊断服务】二、网络层协议(1)— 网络层概述与功能
PM2 deploy nuxt related commands
小区房价可视化