main () { float x, y; x = 1.0; do { printf("%e\n", x); x = x/2.0; y = 1.0+x; } while (y > 1.0); }