Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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:
image text in transcribed

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

Database Design Application Development And Administration

Authors: Michael V. Mannino

3rd Edition

0071107010, 978-0071107013

More Books

Students also viewed these Databases questions

Question

Explain consumer behaviour.

Answered: 1 week ago

Question

Explain the factors influencing consumer behaviour.

Answered: 1 week ago

Question

Explain the function and purpose of the Job Level Table.

Answered: 1 week ago