home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / in1.cpp < prev    next >
C/C++ Source or Header  |  1993-03-24  |  847b  |  29 lines

  1. // Program illustrates standard stream input
  2.  
  3. #include <iostream.h>
  4.  
  5. main()
  6. {                 
  7.   double x, y, z, sum;
  8.   char c1, c2, c3;
  9.   
  10.   cout << "Enter three numbers separated by a space : ";
  11.   cin >> x >> y >> z;   
  12.   sum = x + y + z;
  13.   cout << "Sum of numbers = " << sum
  14.        << "\nAverage of numbers = " << sum / 2 << "\n";
  15.   cout << "Enter three characters : ";
  16.   cin >> c1 >> c2 >> c3;
  17.   cout << "You entered characters '" << c1 
  18.        << "', '" << c2 << "', and '" 
  19.        << c3 << "'\n";    
  20.   cout << "Enter a number, a character, and a number : ";
  21.   cin >> x >> c1 >> y;
  22.   cout << "You entered " << x << " " << c1 << " " << y << "\n";
  23.   cout << "Enter a character, a number, and a character : ";
  24.   cin >> c1 >> x >> c2;
  25.   cout << "You entered " << c1 << " " << x << " " << c2 << "\n";
  26.   
  27.   return 0;
  28. }
  29.