#include using namespace std; int main(){ double x = 0.5; double r = 3.6; int c = 0; while(c < 50){ cout << x << endl; x = r*x*(1-x); c = c + 1; } }