使用C++怎么实现一个随机点名生成器

发布时间:2021-06-15 15:38:38 作者:Leah
来源:亿速云 阅读:429

这期内容当中小编将会给大家带来有关使用C++怎么实现一个随机点名生成器,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

用途:

随机点名

原理:

从exe文件同目录下的文档中导入人员信息(可以多重),通过rand+Hash实现,按空格键即可生成。

C++中rand()函数可以用来产生随机数,但是是属于伪随机数。

rand()函数用法:

在使用rand()函数的时候,首先需要包含头文件#include<stdlib.h> ,用法是int rand(void) ,产生的随机数范围是0~65536,类型为unsigned int,不能超过范围。rand()函数不接受参数,默认以1为种子(即起始值)。 随机数生成器总是以相同的种子开始,所以形成的伪随机数列也相同,失去了随机意义。若要不同,此时需要使用函数srand()进行初始化。

完整示例代码:

#include <bits/stdc++.h> 
#include <conio.h>
#include <windows.h>
static const int MAXN=101;//limit
using namespace std;
struct Information
{
 char name[MAXN];
}stu[MAXN];
bool vis[MAXN];
FILE *fp;
int num,cnt,randnum;
char ch,filename[MAXN],line[MAXN];
inline void copyright()
{
 puts("Program Name: Random Name.\n");
 Sleep(1000);
 puts("Design By:BeyondLimits.\n");
 Sleep(1000);
 puts("All rights reserved.\n");
 Sleep(1000);
}
inline void input()
{
 puts("Please input the file name of the name list.\n");
 gets(filename);
 fp=fopen(filename,"r");
 puts("Everything is ready.\n");
}
inline void work()
{
 while(fgets(line,sizeof(line)-1,fp)) if(line[0]!='\n'&&line[0]!=' ') sscanf(line,"%s\n",stu[cnt++].name);//input information
 srand(0);
 puts("Press Space to get a random name or press any other key to exit.\n");
 while((ch=getch())==' ')
 {
  randnum=rand()%cnt;
  while(vis[randnum]) randnum=rand()%cnt;
  vis[randnum]=true;
  printf("%s\n",stu[randnum].name);
  if(++num==cnt)
  {
   puts("Program has been exited.\n");
   puts("Thank you for your using.\n");
   return ;
  }
 }
}
int main()
{
 copyright();//copyright announce
 input();//input file name
 work();//main work
 return 0;
}

上述就是小编为大家分享的使用C++怎么实现一个随机点名生成器了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。

推荐阅读:
  1. JavaScript如何实现随机点名程序
  2. JavaScript实现随机点名器

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

c++

上一篇:C++如何实现计算24点的程序

下一篇:c++中换行符知识点有哪些

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》