// Millones.cpp (c) 2006 adolfo@di-mare.com #include const long DIES_MIL = 10000l; const long CIEN_MIL = DIES_MIL * 10l; int main() { long i, j; cout << endl << "DIEZ_MIL: " ; for (i=0; i DIES_MIL ) { cout << '!'; } } if ( 0 == i % CIEN_MIL ) { cout << '.'; } } cout << endl << "CIEN_MIL: " ; for (i=0; i CIEN_MIL ) { cout << '!'; } } if ( 0 == i % CIEN_MIL ) { cout << '.'; } } return 0; } // EOF: Millones.cpp