#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int a[10],n=0, t,i;
srand(time(NULL));//随机数种子设置。
while(n<10)
{
t = rand()%100;//生成一个0到99之间的随机数。
for(i = 0; i < n; i ++)//查重。
if(t==a[i]) break;//如果重复,则提前退出。
if(i==n)//没有提前退出,说明不是重复的。
a[n++]=t;//加入到随机数数组中。
}
for(i = 0; i < 100; i ++)
printf("%d ",a[i]);//输出结果。
return 0;
}
#include <stdlib.h>
#include <time.h>
int main()
{
int a[10],n=0, t,i;
srand(time(NULL));//随机数种子设置。
while(n<10)
{
t = rand()%100;//生成一个0到99之间的随机数。
for(i = 0; i < n; i ++)//查重。
if(t==a[i]) break;//如果重复,则提前退出。
if(i==n)//没有提前退出,说明不是重复的。
a[n++]=t;//加入到随机数数组中。
}
for(i = 0; i < 100; i ++)
printf("%d ",a[i]);//输出结果。
return 0;
}