當前位置:商標查詢大全網 - 彩票查詢 - 求壹段用C寫的關於排列組合代碼,類似彩票選號

求壹段用C寫的關於排列組合代碼,類似彩票選號

#include "stdlib.h"

#include "stdio.h"

#include "time.h"

void main()

{

srand( (unsigned)time( NULL ) );

int arry[6];

int num=0;

for(int i=0;i<6;i++)

{

arry[i]=rand()%32+1;

for(int j=0;j<i;j++)

{

if(arry[j]==arry[i])

i--;

}

}

for(int t=0;t<6;t++)

{

printf("號碼%d\t%d\t\n",t,arry[t]);

}

}