c++ how to make it so a value in an array represents another value from a different array code example
Example: select elements from array C++
double X[100];
for (int i = 0; i < 98; i++) {
X[i+1] = r*X[i]*(1.0-X[i]);
myfile << X[i] << endl;
}
double X[100];
for (int i = 0; i < 98; i++) {
X[i+1] = r*X[i]*(1.0-X[i]);
myfile << X[i] << endl;
}