Question: C++ please!! (1) (2) Please help me!! Create a C++ IPO program (from scratch) in the file named pe01.cpp. The program calculates the the wind-chill

C++ please!!

(1)

C++ please!! (1) (2) Please help me!! Create a C++ IPO program

(from scratch) in the file named pe01.cpp. The program calculates the the

(2)

"wind-chill" (W) or "feels-like" temperature given the wind speed (v) in miles

per hour and the temperature ( t ) in Fahrenheit. Your program

Please help me!!

Create a C++ IPO program (from scratch) in the file named pe01.cpp. The program calculates the the "wind-chill" (W) or "feels-like" temperature given the wind speed (v) in miles per hour and the temperature ( t ) in Fahrenheit. Your program should use the "old" wind-chill formula: W=0.0817(3.71v+5.810.25v)(t91.4)+91.4 Here is what the output of your program should look like running: Create a C++ IPO program (from scratch) in the file named pe01.cpp Calculate the distance between two points (x1,y1) and (x2,y2) and displays the distance between them. The formula for calculating the distance between two points is: D=(x2x1)2+(y2y1)2 Here is what the output of your program should look like running: - Seven lines of output (2 blank lines) - Your name on the first line (not mine) Gilbert, Stephen: Distance Calculator - Escape sequences on the second line \"\"\"\\"\\"\"\\"\"\"\\"\\"\"\\ - Result inside brackets [] with no extra Enter x1 and y1:1.53.4 formatting Enter x2 and y2:4.05.1 Notice that this problem includes escape sequences as well as math functions. You'll need Distance between points [8.86002] to use the sqrt () and the pow () functions. I have already included the correct header. \#include \#include \#include \#include using namespace std; int run() {// Place your solution here \} return

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!