Problem:
Question- Design a C++ program that will read a series of Roman numerals from a file (via Linux redirection). Each Roman numeral must be translated to its Arabic equivalent. Both roman and Arabic values must be displayed.
Additionally, the program must count how many numerals were converted and sum the Arabic values. No arrays, stings, or other structured data types can be used in this program. Declare only char and int type variables.
Show the code, demonstrate it works properly and describe what it is doing.