home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <condefs.h>
- #include <conio.h>
- #include <iostream.h>
- #pragma hdrstop
-
- //---------------------------------------------------------------------------
- //
- // We comment out the argc and argv variables to avoid
- // compiler warnings.
- //
- int main(int /*argc*/, char /***argv*/)
- {
- cout << endl << "Starting program..." << endl << endl;
- int i = 6;
- while (i-- > 0) {
- cout << endl << "Today I have " << i;
- cout << " problems to worry about.";
- }
- cout << "\b!\nYipee!";
- cout << endl << endl << "Press any key to continue...";
- getch();
- return 0;
- }
- //---------------------------------------------------------------------------
-