Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Write and run a C++ program that converts a number entered in Roman numerals to decimal. Your pro- gram should consist of a
1. Write and run a C++ program that converts a number entered in Roman numerals to decimal. Your pro- gram should consist of a class, say, roman_type. An object of type roman_type should do the following. a) Store the number as a Roman numeral. b) Convert and store the number into decimal form. c) Print the number as a Roman numeral or decimal number as requested by the user. The decimal values of the Roman numerals are: M 1000 D 500 C 100 L 50 X 10 V 5 I 1 d) Test your program using the following Roman numerals: i. MCXIV ii. CCCLIX iii. MDCLXVI.
Step by Step Solution
★★★★★
3.40 Rating (144 Votes )
There are 3 Steps involved in it
Step: 1
include include using namespace std class RomanType private string romanNumeral int decimalValue Map ...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
Document Format ( 2 attachments)
663d8dcd02c42_965469.pdf
180 KBs PDF File
663d8dcd02c42_965469.docx
120 KBs Word File
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started