123456
ifstream myfile; //... while ( myfile ) { // read number }
123456789
ifstream myfile; //... while ( true ) { // read number if ( !myfile ) break; // exit from the loop //... }
12345
ifstream myfile; do { // read number } while (myfile);