Lab 11

Write a program that uses a case statement to print the english word associated with any integer between 0 and 9.

The following is an example run

   Enter an integer between 0 and  9, or -1 to stop:  2
   You entered TWO (2)

   Enter an integer between 0 and  9, or -1 to stop:  5
   You entered FIVE (5)

   Enter an integer between 0 and  9, or -1 to stop:  -1
   You entered -1, Quitting.

When finished, email the .C file to me.