Answered step by step
Verified Expert Solution
Question
1 Approved Answer
could you put steps and screenshots to help my to know the way do coding however, the C++ is a new thing for my. Objective:
could you put steps and screenshots to help my to know the way do coding however, the C++ is a new thing for my.
Objective: Become more familiar with C++ I/O, computations in C++, and the C++ development environment you are using for this class. Description: Write a program that calculates the wind chill factor given the current temperature, T (oF), and wind speed, V (MPH, miles per hour) Specifically, your final program will read the current temperature and the wind speed, then calculate and display the wind chill (in both Fahrenheit and Celsius Useful formulas Wind Chill (o F) 35.74 0.6215T -35.75 Vo 0.4275 T V0.16 0.16 C 32 Outline of solution: 1. Display standard output information using the ShowProgramHeader function to print your required output information. (Remember to call the Show ProgramHeaderO function from from your main function. 2. Prompt user for temperature (input). 3. Read temperature (F) 4. Prompt user for wind speed (input) 6. Read wind speed (MPH) 6. Calculate wind chill (F) 7. Print input values and wind chill factor (show units) 8. Calculate wind chill factor in Celsius. 9. Print wind chill factor in Celsius. Deliverables Program fully documented. Output: Show intermediate steps in the development of your program. Test your final program using at least three different sets of values Sample calculation sheet: In addition to your program and output, attach a page showing your sample calculations. These sample calcu- lations should be done before you start programming and used as a minimal set of test cases for your program. If you have any questions regarding this assignment, do not hesitate to contact me. Start working on this assignment as soon as possible, so you have plenty of time to get help if you need it Reference: http://www.nws chill.shtmlStep 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