Question: Define a class StatePair with two template types ( T 1 and T 2 ) , constructors, mutators, accessors, and a PrintInfo ( ) method.
Define a class StatePair with two template types T and T constructors, mutators, accessors, and a PrintInfo method. Three vectors have been prefilled with StatePair data in main:
vector zipCodeState: ZIP code state abbreviation pairs
vector abbrevState: state abbreviation state name pairs
vector statePopulation: state name population pairs
Complete main to use an input ZIP code to retrieve the correct state abbreviation from the vector zipCodeState. Then use the state abbreviation to retrieve the state name from the vector abbrevState. Lastly, use the state name to retrieve the correct state namepopulation pair from the vector statePopulation and output the pair.
Ex: If the input is:
the output is:
Maryland: C
Define a class StatePair with two template types T and T constructors, mutators, accessors, and a PrintInfo method. Three vectors have been prefilled with StatePair data in main:
vector zipCodeState: ZIP code state abbreviation pairs
vector abbrevState: state abbreviation state name pairs
vector statePopulation: state name population pairs
Complete main to use an input ZIP code to retrieve the correct state abbreviation from the vector zipCodeState. Then use the state abbreviation to retrieve the state name from the vector abbrevState. Lastly, use the state name to retrieve the correct state namepopulation pair from the vector statePopulation and output the pair.
Ex: If the input is:
the output is:
Maryland:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
