/* FloatTest Reads in a bunch of floats from stdin and prints them */ #include main() { float x; while (scanf("%g", &x)==1){ printf("%g\n",x); }; }