Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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)

image text in transcribed

image text in transcribed

(2)

image text in transcribed

image text in transcribed

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

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

More Books

Students also viewed these Databases questions