我正在制作一个程序来配置我的wifi,因为我经常往返于不同的网络。我正在生成一个随机数,它是192.168.0。*序列中的最后一个数字。现在,当我运行没有文件i / o的代码时,随机数生成就好了,但是,当我用文件i / o运行它时它只生成2或144.有人能告诉我为什么会发生这种情况并且可能提供一个解。谢谢。下面是生成随机数的代码,并根据之前使用的数字进行检查。
//initialise variables so rndm>2 and <253
int rndm, minNum=2, maxNum=253, iHistory;
bool loop=0;
while(loop==0){
std::cout<<"One Moment please, generating random number...\n";
//generate random number
rndm = ((double) rand() / (RAND_MAX+1)) * (maxNum-minNum+1) + minNum;
//Read number from history file
ifstream inputFile("History.txt");
string line;
while (getline(inputFile, line)) {
istringstream ss(line);
string history;
ss >> history ;
iHistory=atoi(history.c_str());
//If random number was used before, loop
if(iHistory==rndm){
loop=0;
}
else{
loop=1; //else continue
}
}
}
//Write random number to file
ofstream myfile;
myfile.open ("History.txt");
myfile << rndm;
myfile.close();
std::cout<<"Random number is: "<<rndm<<"\n\n";
答案 0 :(得分:1)
我让它工作,我只是更改了随机数生成器。
int min = 2;
int max = 253;
int rng = 0;
srand(unsigned(time(NULL)));
rng = rand() % max;
if(rng == min-1 || rng == max-1){ rng++; }
请务必阅读种子。