#include<bits/stdc++.h>
using namespace std;
mt19937 lxs(time(0));//time(0):电脑时间
int getRandomNumber(int l,int r){
return lxs()%(r-l+1)+l;//from[l,r]
}
int main(){
lxs();
printf("幸运观众是 %d 号同学\n",getRandomNumber(1,43));//[1,43]
// printf("%d\n",lxs());//INT RANGE
// srand(time(0));
// printf("%d\n",rand());//[0,32765]
system("pause");//防止运行后自动退出,需头文件stdlib.h
return 0;
}//生成随机数
标签:lxs,int,time,生成,随机数,printf,return
From: https://www.cnblogs.com/hnzzlxs01/p/16655976.html