中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C語言實現隨機抽獎程序

小云
193
2023-08-17 15:18:57
欄目: 編程語言

以下是一個C語言實現的隨機抽獎程序示例:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int numParticipants, numWinners;
printf("請輸入參與抽獎的人數:");
scanf("%d", &numParticipants);
printf("請輸入中獎人數:");
scanf("%d", &numWinners);
if (numWinners > numParticipants) {
printf("中獎人數不能大于參與人數!\n");
return 0;
}
// 使用當前時間作為隨機數種子
srand(time(NULL));
int* participants = (int*)malloc(numParticipants * sizeof(int));
int* winners = (int*)malloc(numWinners * sizeof(int));
// 初始化參與者編號
for (int i = 0; i < numParticipants; i++) {
participants[i] = i + 1;
}
// 隨機抽獎
for (int i = 0; i < numWinners; i++) {
int randIndex = rand() % numParticipants;
winners[i] = participants[randIndex];
// 將已中獎的參與者從數組中刪除
for (int j = randIndex; j < numParticipants - 1; j++) {
participants[j] = participants[j + 1];
}
numParticipants--;
}
printf("中獎者編號:");
for (int i = 0; i < numWinners; i++) {
printf("%d ", winners[i]);
}
printf("\n");
free(participants);
free(winners);
return 0;
}

該程序會先詢問參與抽獎的人數和中獎人數,然后使用隨機數生成器生成中獎者編號,最后輸出中獎者的編號。請注意,該程序使用了動態內存分配,因此在使用完之后需要調用free函數釋放內存空間。

0
仪陇县| 本溪市| 临清市| 和龙市| 桂平市| 蒲城县| 资阳市| 东乌| 同德县| 神木县| 无极县| 潼关县| 简阳市| 尚志市| 霍城县| 台山市| 龙井市| 峨眉山市| 防城港市| 胶南市| 班玛县| 青冈县| 平谷区| 来安县| 盐边县| 临汾市| 宝清县| 台前县| 茌平县| 沙洋县| 西平县| 富顺县| 枣阳市| 巢湖市| 诏安县| 赣州市| 武义县| 馆陶县| 韶关市| 新绛县| 股票|