// a1.cpp : 界说操控台应用程序的进口点。
//
#include “stdafx.h”
#include “time.h”
#include “stdlib.h”
int _tmain(int argc, _TCHAR* argv[])
{
int arr[]={0,0,0,0,0,0,0};
int tm=time(NULL);
srand(tm);
for(int k=0;k<7;k++)
{
while(1)
{
bool ist=false;
int tem=rand()%31;
for(int i=0;i<7;i++)
{
if(arr[i]==tem)//切断句子
{
ist=true;
}
}
if(ist==false)//经过ist操控了函数的通断
{
arr[k]=tem;
break;
}
}
}
for(int l=0;l<7;l++)
{
printf(“%d “,arr[l]);
}
return 0;
}