home *** CD-ROM | disk | FTP | other *** search
/ C by Discovery (4th Edition) / C_By_Discovery_4th_Edition.tar / C_By_Discovery_4th_Edition / _DISK_ / ch12 / epp1.cpp < prev    next >
C/C++ Source or Header  |  2005-06-16  |  372b  |  18 lines

  1. //             epp1.cpp
  2. //
  3. //  A simple I/O example
  4.  
  5. //Include Files
  6. #include <iostream.h>
  7.  
  8. int main()
  9. {
  10.     int intvar;
  11.     char charvar;
  12.     float floatvar;
  13.  
  14.     cout << "Enter an int, a char, and a float: ";
  15.     cin >> intvar >> charvar >> floatvar;
  16.     cout << "You entered " << intvar << ", |" << charvar << "|, " << floatvar << "\n";
  17.     return 0;
  18. }