Thank you. I removed those statements but when I run it and input "f" or "F" the output still reads "Enter the temperature in Celsius:" and then it converts celsius to Fahrenheit. Why isn't it doing Fahrenheit to celsius when I choose "f" or "F"?
if (choice == 'f' || 'F') {
This doesn't mean what you think it means. This is always true, because you're not comparing 'F' to anything. You're just saying 'F', which evaluates to true. You've got if (choice == 'f' || true ) {
which always comes out as true.
Likewise if (choice == 'c' || 'C') is if (choice == 'c' || true ) {