我想要從一群人中隨機抽出一位的c語言要怎麼寫呢?

2015-10-14 11:10 am
as title

回答 (3)

2015-11-03 9:49 am
用亂數抽出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;
}
2015-10-15 2:43 am
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 備份