#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;
}