因为经常忘记怎么产生随机数,所以写一篇博客记录一下0.0
需要的头函数:
#include <time.h>
#include <stdlib.h>
生成随机数的语句:
srand((int)time(NULL));//设置随机数种子
n=rand()%100+1;//产生一个1-100之间的随机数
因为经常忘记怎么产生随机数,所以写一篇博客记录一下0.0
需要的头函数:
#include <time.h>
#include <stdlib.h>
生成随机数的语句:
srand((int)time(NULL));//设置随机数种子
n=rand()%100+1;//产生一个1-100之间的随机数