Challenge 1. This is a Java program that converts Roman numerals to integers using a loop to iterate through each character in the input string and calculate the total value based on the values of ...
Character.getNumericValue (aChar) will let me convert a char into an int. I want to know how I can reverse the process and get a char from an integer? Thanks.