home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / con_32 / test02.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-30  |  328 b   |  15 lines

  1. #include <iostreams.h>
  2.  
  3. // you can use the standard C++ streams cin and cout
  4.  
  5. int    main( int argc, char *argv[], char *env[] )
  6. {
  7.     int    aNumber;
  8.  
  9.     cout << "test02.cpp\n";
  10.     cout << "please input a number and press enter:";
  11.     cin >> aNumber;
  12.     cout << "you have entered the following number:" << aNumber;
  13.  
  14.     return( 0 );
  15. }