|
|
cin >> count;
What need to do is have the user enter a number between 1-20 and have it output the equivalent roman numeral so I thought the switch would work. |
|
|
The roman numerals should be stored in an array of strings |
string arr[20] = {"I", "II", "III", "IV", "V" ...};
|
|
|
|