Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

**MIPS / MARS PROGRAMING LAB** The windchill is defined for winds at least 3 miles/hour and for temperatures at or below 50 degrees. Your program

**MIPS / MARS PROGRAMING LAB**

The windchill is defined for winds at least 3 miles/hour and for temperatures at or below 50 degrees. Your program will be able to calculate windchills for winds up to 60 miles/hour. You will need an array of floats for the wind speed factor, which you will use to calculate the windchill. This array will hold the wind speed factor for winds from 3 to 60 miles/hour, in locations [0] to [57].

The formula for windchill in Fahrenheit is below, with T as the temperature in Fahrenheit, and V as the wind speed factor, calculated in miles per hour:

 windchill = 35.74 + 0.6215T - 35.75V + 0.4275TV 

Your program will do the following:

  1. get the array of floats to hold the wind speed factors
  2. create float variables to hold the constants needed for the windchill calculation, and load those constants into registers to use in the windchill calculation
  3. create a loop to do the following:
    1. read in a temperature (int), stop looping when the user enters a temperature above 50
    2. calculate and print the windchills for this temperature, for all integer wind speeds from 3 to 60, rounding the windchills to the nearest int: output should look like the following
      temp: xxx windspeed windchill 3 xxx 4 xxx 5 xxx 60 xxx

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction To AccountingAn Integrated Approach

Authors: Penne Ainsworth, Dan Deines

8th Edition

1119600103, 9781119600107

More Books

Students also viewed these Accounting questions

Question

Describe the responsibilities of the controller.

Answered: 1 week ago

Question

=+a) Draw the decision tree.

Answered: 1 week ago