In: Computer Science
Write a java program to convert a positive integer value to a roman number. Your program should print a description, prompt them for how many numbers they need to convert and then loop that many times. Each time the program needs to prompt for a number and output the equivalent roman numeral. If the user enters a number less than 1 then output an error message. See sample output below:
****************************************************
* Welcome to the Roman Numeral Converter! *
* You can use this tool to convert any decimal *
* value into a Roman Numeral. To get started *
* please enter the how many decimal numbers you *
* need to convert. *
****************************************************
How many numbers do you have to convert? 5
Please enter the number that you would like to convert: 58
58 as a Roman Numeral is LVIII
Please enter the number that you would like to convert: 2019
2019 as a Roman Numeral is MMXIX
Please enter the number that you would like to convert: -85
Sorry, but -85 is not a positive number and cannot be converted
Please enter the number that you would like to convert: 7
7 as a Roman Numeral is VII
Please enter the number that you would like to convert: 23
23 as a Roman Numeral is XXIII
Requirements
You must have a helper class RomanHelper with the following methods. It will be up to you to determine the return type and parameters required for each:
Also, you will need to have a driver class RomanDriver with the following methods:
You may add however many additional methods that you would like.