So I've been spending longer on this issue than I like to admit. It seems like the code below would make perfect sense, but when I get the final output of balance it generates a far from correct number that I still have not figured out the meaning behind. For example, 100 - 50 = 47 (according to my code).
Therefore, I'm trying to simply let the user input a number that is subtracted from balance. Any help would be appreciated, thank you.
int balance = 100;
int userInput = Console.Read();
balance -= userInput;