STEP 1: Create a Multifile Project

STEP 1: Create a Multifile Project

STEP 1: Create a Multifile Project

Objective: Create a C++ console application that will model the characteristics of a resistor.

  1. Create a multifile project. Create and add to the project an h file containing the resistor-class definition.
  2. Create and add to the project a cpp file containing the implementation of the class-member functions.
  3. Create and add to the project a ccp file containing the main() function, which will instantiate a resistor object and test its member functions.

STEP 2: Required Class Members

The resistor class will, at minimum, have members that do the following.

  1. store the nominal resistance value of a resistor
  2. store the tolerance of a resistor
  3. initialize any and all nominal-resistance values to correct, EIA, nonzero values that are greater than 0 and less than 1,000,000 ohms
  4. initialize any and all resistance-tolerance values to correct, E12, E24, E48, or E96 resistance-tolerance values
  5. allow the nominal-resistance and tolerance values of a resistor object to be changed by the user
  6. All member functions should have a test message stating the name of the function. All the test messages should be displayed or not displayed, depending on the value of a Boolean variable declared in main().
  7. If the Boolean value = true, display the message.
  8. If the Boolean value = false, do not display the message.

STEP 3: Program Operations

  1. Function main() should instantiate two objects of class resistor.
  2. Function main() should display the current values of all resistor objects.
  3. Function main() should also calculate and display the minimum and maximum in-tolerance resistance values of each resistor object from the resistor data members.
  1. Function main() should allow the user to change the values of the nominal resistance and the resistor tolerance of both resistor objects, and it should also correctly handle out of numeric-range input. Main() is also responsible for making sure that the user can successfully enter only correct, EIA resistance and tolerance values.
  2. The user should be given the following data-entry choices:
  3. accept current EIA values for resistance and tolerance;
  4. The function main() should display the new, modified values of the resistor object, including the new min and max in-tolerance resistance values.
  5. The function main() should be executed twice: once with the test messages displayed and once without.