/////////////////////////////////////////////////////// // // time1.cpp // // Jeff Ondich, 2/11/98 // // Time this using the Unix command "time" // /////////////////////////////////////////////////////// #include const int N = 10000; int main( void ) { int counter = 0; for( int i=0; i < N; i++ ) for( int j=0; j < N; j++ ) counter++; return( 0 ); }