Introduction To Programming Write a program to read a Fahrenheit temperature, convert it to Celsius and print the converted temperature. The formula for the conversion is: Celsius temperature = Fahrenheit temperature - 32 * 5 / 9.
In the following pre tag, write the three planning lists based on the verbs and nouns you see in the problem statement.
The List of Input Variables:
The List of Output Variables:
The Process Checklist:
Write the JavaScript code based on everything you've done. Your code must follow the course coding standards. You should add good comments about the different parts of your solution.
Entered Fahrenheit Temperature: 77
Calculated Celsius Temperature: 25