home *** CD-ROM | disk | FTP | other *** search
- #include <iostreams.h>
-
- // you can use the standard C++ streams cin and cout
-
- int main( int argc, char *argv[], char *env[] )
- {
- int aNumber;
-
- cout << "test02.cpp\n";
- cout << "please input a number and press enter:";
- cin >> aNumber;
- cout << "you have entered the following number:" << aNumber;
-
- return( 0 );
- }