-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
74 lines (59 loc) · 2.03 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int totalPeople, peopleToSelect, i, selected, scanResult;
// 初始化随机数生成器
srand((unsigned)time(NULL));
while (1) {
printf("请输入总人数 (或输入0结束程序): ");
scanResult = scanf_s("%d", &totalPeople);
// 检查输入是否为整数
if (scanResult != 1) {
printf("输入错误,请输入一个整数。\n");
// 清除错误的输入
while (getchar() != '\n');
continue;
}
if (totalPeople == 0) {
printf("程序已结束。\n");
break; // 用户输入0,结束程序
}
printf("请输入需要抽取的人数 (或输入0结束程序): ");
scanResult = scanf_s("%d", &peopleToSelect);
// 检查输入是否为整数
if (scanResult != 1) {
printf("输入错误,请输入一个整数。\n");
// 清除错误的输入
while (getchar() != '\n');
continue;
}
if (peopleToSelect == 0) {
printf("程序已结束。\n");
break; // 用户输入0,结束程序
}
if (peopleToSelect > totalPeople) {
printf("抽取的人数不能超过总人数,请重新输入。\n");
continue; // 返回循环开始,重新输入
}
printf("被选中的编号为: ");
int* selections = malloc(totalPeople * sizeof(int)); // 动态分配数组
if (selections == NULL) {
printf("内存分配失败。\n");
return 1; // 如果内存分配失败,则退出程序
}
for (i = 0; i < totalPeople; i++) {
selections[i] = 0; // 初始化为未被选中
}
for (i = 0; i < peopleToSelect; i++) {
do {
selected = rand() % totalPeople; // 生成随机数选择人员
} while (selections[selected] == 1); // 如果已被选中,则重新选择
selections[selected] = 1; // 标记为已选中
printf("%d ", selected + 1); // 输出被选中的人员编号,编号从1开始
}
printf("\n");
free(selections); // 释放动态分配的内存
}
return 0;
}