#include using namespace std; int main() { int i=0; while( i<1000000 ) { ++i; if( i==3 ) continue; //Whoops, ignore that. This is a modification of some source code from cout << i << endl; // my C++ book. It was telling me about continues and such, and I forgot // to take the continue out. Whatever. } return 0; }