Introduction To Programming
10-152-310

Learning Plan 3 : Math and Operators

Student

  • Name:
  • Section:
  • Email:

Steps

  • Open this file in your browser and Microsoft Visual Studio
  • Add your name, section, and email
  • Read the following problem statement and complete all 5 steps in the development process.

Problem Statement

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.

The Program Planning Lists

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:
        

JavaScript Output

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.

Sample Output:

        Entered Fahrenheit Temperature: 77
        Calculated Celsius Temperature: 25

3.3 Project - Part 2 Output: