1. 程式人生 > >該程式用來產生不重複的隨機數 0~9

該程式用來產生不重複的隨機數 0~9

#include <stdlib.h> //標準工具庫,要用到其中的rand()() 
#include <stdio.h> 
#include<conio.h> 
#include <time.h> //時間庫,要用到裡面的時間來做隨機數的種子 

int main(void) 
{ 
int i; 
int r;
int sz[10]={0,1,2,3,4,5,6,7,8,9};
srand()(time(NULL)); 

printf("Ten rand()om numbers from 0 to 9\n\n"); 
for(i=0; i<10; i++) 
{
         r=rand()%(10-i);
         
         printf("%d\n",sz[r]);
         
         for(int j=r;j<10;j++)
                 sz[j]=sz[j+1];
         
}
getch()(); 
return 0; 
}