Converts roman numerals to modern numbers and vice versa
To compile the source code download the repo, and in your command prompt enter into the directory where the main.cpp file is found.
run the command
g++ -o codingChallenge.exe main.cpp -static-libgcc -static-libstdc++
The program allows your to choose an option of what you want to convert (roman numeral to modern number or modern number to roman numeral) and you can convert however many times you want until you choose the quit option. While entering the roman numerals make sure to enter a valid roman numeral. In basic roman numerals the highest number you can show is 3999, so you can convert numbers 1 - 3999 to roman numerals with this code.
Time spent on challenge: 3 hours