Run down of the if and else statements
Now for my question. I'm writing a very basic program that calculates the value of speed based off of what the users defines as the 'distance' and 'time' variables. Once the user defines both 'distance (d)' and 'time (t)' the program spits out the value for 'speed (s)' in km/h.
After this the program poses a question to the user: "Would you like to see the Miles Per Hour conversion? Y/N"
It's basically asking whether or not the user would like to see that same result converted in to miles per hour, as I'm sure you could figure out. This where the IF statement comes in and ruins my day.
I need the program to display a unique message for whichever button (y or n) is pressed. So far, I can't seem to grab hold of this concept and it's doing nothing but frustrating me. Could any of you give me a rundown of how I would use the IF and ELSE statements in this situation?

