C++发生不反复序列的范畴随机数
#include<stdlib.h>
#include<time.h>
#include<iostream.h>
void main()
{
srand( (unsigned)time( NULL ) ); //以系统时间作种子,就不会每次都发生一样的序列了
double temp=double(rand()%4000+3000)/10000.0; //调理精度
temp=temp<0.5?(temp-0.2):(temp+0.2); //调理范畴
//**temp∈(0.1000,0.3000) ∪ (0.7000,0.9000)
cout<<temp<<endl;
}