Program translates whole dollar amount into words


Create a C++ code on below:

Numbers Class

Q: Design a class Numbers that can be used to translate whole dollar amounts in the range 0 through 9999 into an English description of the number. For example, the number 713 would be translated into the string seven hundred thirteen, and 8203 would be translated into eight thousand two hundred three. The class should have a single integer member variable: int number; and a static array of string objects that specify how to translate key dollar amounts into the desired format. For example, you might use static strings such as string lessThan20[20] = {"zero", "one", ..., "eighteen", "nineteen"}; string hundred = "hundred"; string thousand = "thousand";

The class should have a constructor that accepts a nonnegative integer and uses it to initialize the Numbers object. It should have a member function print() that prints the English description of the Numbers object. Demonstrate the class by writing a main program that asks the user to enter a number in the proper range and then prints out its English description.

Below is how the code would display:

This program translates whole dollar amount into words for the purpose of writing checks.
Entering a negative number terminatesthe program.
Enter an amount for be translated into words:<0-9999>1234
One thousand two hundred thirty four
Enter another number 0-9999: -3456
Press any key to continue.........

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: Program translates whole dollar amount into words
Reference No:- TGS01936577

Now Priced at $25 (50% Discount)

Recommended (95%)

Rated (4.7/5)