如何用C语言制作班级抽奖的点名抽奖装置

如果号码是用随机数抽取的,号码的主人可以用switch case打印出来。

# include & ltstdio.h & gt

# include & lttime.h & gt

# include & ltstdlib.h & gt

int main()

{

int a = 0;

srand((无符号)时间(空));

a = rand()% 40+1;/*从1到40中选择一个*/

printf("%d\n ",a);

返回0;

}