你好!!
你的代码就没有输出部分呀
输出部分添加了,你看看吧
#include "stdlib.h"
#include"stdio.h"
#include"time.h"
void main()
{
int n ,a[50],i,j,t;
srand(time (NULL));
for(i=0;i<50;i++)
{
a[i]=rand()%90+10;
for(j=0;jif (a[i]==a[j])
i--;
}
printf("nafter:\n");
for(i=0;i<50;i++) // 下面这是打印输出
{
if (i%10==0) // 十个数字换行
printf("\n");
printf("%d ",a[i]);
}
}
你的方法不好,给你推荐一个。
#include "stdlib.h"
#include"stdio.h"
#include"time.h"
#define MAX_RAND 90
#define MAX_SIZE 50
void main()
{
int a[MAX_SIZE],i;
srand((unsigned)time (NULL));
int b[MAX_RAND];
for(i = 0;i < MAX_RAND;i ++)
{
b[i] = i + 10;//存储10~99
}
int last = MAX_RAND;
int rank = 0;
int temp = 0;
for(i = 0;i < MAX_SIZE;i ++)
{
rank = rand()%last;
a[i] = b[rank];
last --;//随机的范围减1
//被获取的数与最后一个数交换
temp = b[rank];
b[rank] = b[last];
b[last] = temp;
}
for (i = 0;i < MAX_SIZE; i++)
{
printf_s("nafter:%d\t",a[i]) ;
if (0 == i % 10)
{
printf_s("\n");
}
}
printf_s("\n") ;
}
好像没问题,没打印?