Create a helper namespace header file that will provide an easy-to-use interface for frequently used functionality. Namespace Create a new Helper.h header file. Within it, declare a namespace named 'Helper'. Inside the namespace, declare AND define (within the namespace body { }) your first helper method: int GetValidatedInt(const char* strMessage, int nMinimumRange = 0, int nMaximumRange = 0); This function should first display the provided message to the screen then use cin to get an int from the user. Error check and validate to ensure a legal integer was entered. If not, clear the cin buffer using clear() and ignore() and try again (Note: the buffer still needs to be cleared even if this step was successful). If a legal integer was entered, check its value to see if it is within the provided minimum and maximum range (inclusive). If the user input was within the range, return the integer. If not, get input again. The range check should be ignored if BOTH the minimum and maximum parameters are 0, so any valid integer is acceptable. You should be using a loop so that the method does not return until a valid and within range (if the range is not 0) integer was totally provided. Customize Create at least two more helper functions that will handle generic code that you find yourself consistently re-writing in SPR. Some helper ideas include: Return random number within a range Print a menu (array of strings) and return the user’s selection

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter9: Using Classes And Objects
Section: Chapter Questions
Problem 9E
icon
Related questions
Question

Create a helper namespace header file that will provide an easy-to-use interface for frequently used functionality.

Namespace

Create a new Helper.h header file. Within it, declare a namespace named 'Helper'. Inside the namespace, declare AND define (within the namespace body { }) your first helper method:

int GetValidatedInt(const char* strMessage, int nMinimumRange = 0, int nMaximumRange = 0);

This function should first display the provided message to the screen then use cin to get an int from the user. Error check and validate to ensure a legal integer was entered. If not, clear the cin buffer using clear() and ignore() and try again (Note: the buffer still needs to be cleared even if this step was successful).

If a legal integer was entered, check its value to see if it is within the provided minimum and maximum range (inclusive). If the user input was within the range, return the integer. If not, get input again. The range check should be ignored if BOTH the minimum and maximum parameters are 0, so any valid integer is acceptable.

You should be using a loop so that the method does not return until a valid and within range (if the range is not 0) integer was totally provided.

Customize

Create at least two more helper functions that will handle generic code that you find yourself consistently re-writing in SPR. Some helper ideas include:

  • Return random number within a range
  • Print a menu (array of strings) and return the user’s selection
AI-Generated Solution
AI-generated content may present inaccurate or offensive content that does not represent bartleby’s views.
steps

Unlock instant AI solutions

Tap the button
to generate a solution

Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage