Question: Answer in C + + please!! This program uses the topics discussed in Chapter 3 input / output interactivity, formatting output, and using the cmath

Answer in C++ please!! This program uses the topics discussed in Chapter 3
input/output interactivity, formatting output, and using
the cmath library. Write a program that asks the user to
enter the x and y coordinates of two points. That is,
(x1,y1) and (x2,y2). The program should:
Find the distance, r, between the two points using
the Pythagorean Theorem.
Find the slope, m, of the line that joins the two points.
Find the midpoint of the line connecting these two points.
Find the equation of the line in standard form.
All functions are to be from the cmath library. Use setprecision(4) with fixed
point notation. Use float or double data types. Do not use the same value for x1
and x2. This will cause the compiler to divide by zero. Formulas to be used are:
Distance =r?S=QRT((x2-x1)2+(y2-y1)2)
Midpoint =(x1+x22.0,y1+y22.0)
Slope =m=y2-y1x2-x1
Standard Form: y=mx-mx1+y1
Your output should look like this:
Enter the value of x1 :
Enter the value of x2 :
Enter the value of y1 :
Enter the value of y :
The distance from these two points is:
The midpoint of the line joining these two points is:
The equation of the line in standard form is:
 Answer in C++ please!! This program uses the topics discussed in

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!