Objective: Create a program that tests each member of the Resistor Class to ensure that they work properly.
Complete the following Tasks:
Create a main function and instantiate three Resistor Class objects: Resistor1, Resistor2 and Resistor3.
The program will then call the EnterResistance function for Resistor1, Resistor2, Resistor3.
The program should then call Resistor3's AddSeries function. The function call will look like this: Resistor3.AddSeries(Resistor1, Resistor2);
The program will now display the current values for Resistor1, Resistor2 and Resistor3 using the DisplayResistor function.
End program