Write a c++ program that has the following:
-given an integer, will print the string representation of the Roman
-accept input of one integer from the keyboard. program will output the Roman Numeral representation of the value.
-account for input of any integer value. However, the input must be between 1 and 5999, inclusive. that is, program must keep prompting the user until a satisfactory value is entered.
-use a string object to build the result value before displaying it to the user. Printing as you go will lose significant credit; there should be one cout statement for the resultant Roman numeral.
-use at least one switch, one do-while, and one while statement in your program