Skip to content

Program accepts numbers and converts them to their english word representation. (EX. 2523.04 to Two thousand five hundred twenty-three and 04/100 dollars)

Notifications You must be signed in to change notification settings

plantsmiles/numeric-value-to-words

Repository files navigation

numeric-value-to-words

Program accepts numbers and converts them to their english word representation. (EX. 2523.04 to Two thousand five hundred twenty-three 4/100 dollars) The code has 97% code coverage and accepts both postive and negative numbers up to 9,999,999,999.

Building the Application

The application uses a gradle wrapper to build, run the tests, and package the application. On Unix machines run:

./gradlew clean build

For windows machine use:

gradle.bat clean build

Running the Application

After building the application with gradle run the following command passing space delimited numbers as arguments to the jar. Example is as follows:

java -jar build/libs/NumericValueToWords-1.0.jar 2046.06

This will produce the output:

Converted Value: 2046.06 => two thousand forty-six 6/100 dollars

You can also supply 1..N arguments as arguments, example as follows:

java -jar build/libs/NumericValueToWords-1.0.jar 2046.06 58 483.9

Will produce the out output:

Converted Value: 2046.06 => two thousand forty-six 6/100 dollars
Converted Value: 58 => fifty-eight dollars
Converted Value: 483.9 => four hundred eighty-three 90/100 dollars

About

Program accepts numbers and converts them to their english word representation. (EX. 2523.04 to Two thousand five hundred twenty-three and 04/100 dollars)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages