The distance between two points pA (XA,YA) and pB (XB,YB) is calculated as follows 2 Distance = √(XA-XB)+(YA-YB)* 2 Write a well-documented C++ program consisting of two functions as described below. Write a function that accepts as parameters (float) the coordinates XA,YA, XB,YB of two points A and B, and returns as a result the distance between the two given points. In the function main: 1) Prompt the user to enter from the keyboard four numbers (float), where the first two numbers represent the coordinates of the first point and the last two numbers represent the coordinates of the second point. 2) Calculate the distance between the two points by calling the above -developed function. 3) Print the entered coordinates of the two points and the calculated distance between them separated by tab at the beginning of a new line. All values must be printed with 2 decimal places. 4) Repeat the previous three steps until the user enters control+Z.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 1TF: Mark the following statements as true or false: a. To use a predefined function in a program, you...
icon
Related questions
Question
Distance = √(XA-XB)+(YA-YB)²
Write a well-documented C++ program consisting of two functions as described below.
Write a function that accepts as parameters (float) the coordinates XA,YA, XB,YB of two
points A and B, and returns as a result the distance between the two given points.
In the function main:
●
The distance between two points pA (XA,YA) and pB (XB,YB) is calculated as follows
●
1) Prompt the user to enter from the keyboard four numbers (float), where the first two
numbers represent the coordinates of the first point and the last two numbers represent
the coordinates of the second point.
2) Calculate the distance between the two points by calling the above -developed function.
3) Print the entered coordinates of the two points and the calculated distance between
them separated by tab at the beginning of a new line. All values must be printed with 2
decimal places.
4) Repeat the previous three steps until the user enters control+Z.
Transcribed Image Text:Distance = √(XA-XB)+(YA-YB)² Write a well-documented C++ program consisting of two functions as described below. Write a function that accepts as parameters (float) the coordinates XA,YA, XB,YB of two points A and B, and returns as a result the distance between the two given points. In the function main: ● The distance between two points pA (XA,YA) and pB (XB,YB) is calculated as follows ● 1) Prompt the user to enter from the keyboard four numbers (float), where the first two numbers represent the coordinates of the first point and the last two numbers represent the coordinates of the second point. 2) Calculate the distance between the two points by calling the above -developed function. 3) Print the entered coordinates of the two points and the calculated distance between them separated by tab at the beginning of a new line. All values must be printed with 2 decimal places. 4) Repeat the previous three steps until the user enters control+Z.
Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr