求大神帮忙写一个点名的软件 类似与抽签助手
老师要求写一个点名系统 随机出人名
假设有30人:
#include<stdio.h>
#include<stdlib.h>
#include <conio.h>
#define N 30
main()
{
int i;
char b;
char mingdan[N][10] = {0};
printf("请输入名字:\n");
for (i = 0; i < N; i++)
{
scanf("%s", mingdan[i]);
}
_getch();//消除回车
while (1)
{
printf("\n按任意键点名,按q/Q退出\n");
b = _getch();
if ((b == 'q') || (b == 'Q'))
{
return 0;
}
i = rand() % N;
printf("%s",mingdan[i]);
}
}