Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Lab Description operations. In this program, you are to create a Roman Numeral class to handle roman numeral How to convert a Roman Numeral to
Lab Description operations. In this program, you are to create a Roman Numeral class to handle roman numeral How to convert a Roman Numeral to a standard base ten pumher: Locate the first individual roman number in the roman number string. Sum up the numeric value of the individual number. Chop of the individual roman numeral from the string and continue the process if the string has more numbers left. How to convert a standard base ten number to a Roman Numeral:: Find the first Roman numeral less than the number. Add the roman numeral to a string. Subtract the value of the Roman Numeral from the number. Repeat this until the original number is less than the current Roman Numeral. Move to the next Roman Numeral in the list and repeat the process. Sample Data 100 1000 2500 1500 Files Needed: RomanNuneral.ava RomanNuneralRunner.1ava 39 49 .40,20,9,5,4 Sample Output: 10 1s 100 isc 1000 is M 2500 is HND 1500 is ND 23 is xxIII 39 1s KXXVIII 49 is XLIX XXVII 1s 77 algorithm he anie Logicto conver ano ronan ber XX is 20 XXVIII 15 3 import static java.lang.System.; public class RomanNumeral private Integer numberi private String roman; private final static int] NUMBERS1000,900,500,400,100,90, 50,40,10,9,5,4,1; private final static String LETTERS-, "CM, "D, "CD", C,XC, public RomanNumeral (String str) public RomanNumeral (Integer orig) public void set Number(Integer num) public void setRoman(String rom) public Integer getNumber ) return number; public String toString() return roman + n
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started