C语言怎么做个抽签程序,就是老师要用这程序来随即抽取学号来回答问题, 56个人,随即抽一人回答问题的代码
2个回答
展开全部
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int noMax=56;//学生人数
srand( (unsigned int)time(NULL));
//使随机函数每次都是随机值,假如不设定,随机出来的值与第一次随机值相同
printf("the random no:%02d\n",rand()%noMax+1);
//rand()%noMax+1随机一个1--noMax的值
system("pause");
return 0;
}
#include <stdlib.h>
#include <time.h>
int main()
{
int noMax=56;//学生人数
srand( (unsigned int)time(NULL));
//使随机函数每次都是随机值,假如不设定,随机出来的值与第一次随机值相同
printf("the random no:%02d\n",rand()%noMax+1);
//rand()%noMax+1随机一个1--noMax的值
system("pause");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询