Hey,
So the first thing I'd recommend is formatting your code. Any modern
IDE will allow you to do that with one keypress. Specifically, it's pretty tough to read those if statements when they're formatted like that.
Second - please describe the issue you're having in detail when asking a question, since it'll help other people help you. Based on the code, I'm guessing the problem is that it says all the temperature readings are zero no matter what you enter.
For this line:
What data type is c?
What data type is "F"?
(edit) Paul beat me to it here. Yeah, these are not the same data type. I actually missed that it used "=" instead of "==", so it just won't even compile as it is now.
I strongly advise splitting up these lines:
Using && to connect multiple different statements may work (though I don't know if it does) but it's definitely not good style. It makes those lines much harder to read - and saving lines of code is never an advantage if it hurts readability. There's actually an issue with the line above, and if you split it up into multiple lines rather than using && between them, you'll likely be able to see what it is.