Question
**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:
- get the array of floats to hold the wind speed factors
- create float variables to hold the constants needed for the windchill calculation, and load those constants into registers to use in the windchill calculation
- create a loop to do the following:
- read in a temperature (int), stop looping when the user enters a temperature above 50
- 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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started