I'm trying to divide a string into parts for reading Roman numerals. For example if the user enters
"XI"
I want the program to be able to understand that I is 1 and X is 10 in order for a data validation like this to work.
if(string roman == "X") int roman += 10;
etc.
=versus comparison==, and between strings"X"and characters'X'. Also, the declaration of 'int roman += 10;' adds 10 to an indeterminate value - unlikely to be what you intended, plus it hides the declaration of any value being accumulated outside that 'if' statement. – Jonathan Leffler Jul 26 '09 at 1:35