Starting The Class

First create a skeleton of the class in Fraction.h and declare the class variables. You should have at least two variables, one to hold the numerator, and one for the denominator. Be sure to use appropriate, meaningful names and to declare the variables as private, following class conventions.

Next declare the functions that will access the class variables. These should be your Output() and Reciprocal() functions as well as two constructors: a default constructor, and one that acepts the numerator and denominator as arguments.