// Here is an outline for problem 1.26 mixing real code with pseudocode

#include <iostream>  // This preprocessor directive is described on page 22 of Deitel
#include <stdlib.h>  // This contains the system("PAUSE") utility use near the end
int main(int argc, char *argv[])
{
  using std::cout;   // so we can write cout instead of std::cout
  using std::cin;
  using std::endl;

  // Declare necessary variables
  // Prompt user to input variables with a cout statement.
  // Use cin stream operator to assign input values to variable names.
  // Output the value of the sum to the console.
  // Output the value of the average to the console.
  // Output the value of the product to the console.
  // Write code to figure out the min and max of the three numbers.
  // Output the value of the min and max to the console
  system("PAUSE");
  return 0;  
}