我想要從一群人中隨機抽出一位的c語言要怎麼寫呢?
回答 (3)
用亂數抽出1~N其中一號的程式碼:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>//產生亂數的函式庫
int main()
{
int n;
scanf("%d", &n);
srand(time(NULL));
n=rand()%n+1;
return 0;
}
1.將一群人(N個人)讀入到陣列.
2.產生0到N-1的一個亂數 X
3.指定陣列裡的[X]人
收錄日期: 2021-05-04 02:05:52
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20151014031005AAIaDAr
檢視 Wayback Machine 備份