0
How i fix this code? I want if rem>=10 , how i change in to a ABCD..
3 Answers
+ 2
I keep getting the error that rem may not have been initialized. Have you tried "int rem = 0;"?
+ 1
Are 1, 2 and 3 the remainders you're expecting to choose between?
+ 1
You declare "int rem;" but later in the code you assign "rem = 'A' ;". So is rem supposed to be an integer or a character?