Hello for the question below, i know how to calculate the distance. But i don't know; 1. how to make the statement looping using a while loop. 2. If the value entered is not an integer value, the...


Hello for the question below, i know how to calculate the distance. But i don't know;<br>1. how to make the statement looping using a while loop.<br>2. If the value entered is not an integer value, the program will print

Extracted text: Hello for the question below, i know how to calculate the distance. But i don't know; 1. how to make the statement looping using a while loop. 2. If the value entered is not an integer value, the program will print "Invalid Input" The distance between two points (i.e., coordinates) is the length of the line segment that connects the two given points. Write, compile, and run a C++ program to calculate the distance between a series of two points as stated in Table 1. Use the C++ mathematical function to calculate the distance and use a 'while' loop to repeat or control the repetition statements. The user should be prompted to enter the two coordinates and your program will output the distance between the two points rounded up to 3 decimal values. If the value entered is not an integer value, the program will print “Invalid Input". The distance between the two points with the coordinates (x1, y1) and (x2, y2) is given by the following formula: distance - (x, - x, ) +(7, - x,)" Coordinate A Coordinate B Distance (3, 2) (-15, -12) (-3, 5) (8, 12) (-4, 3) (-5, 6) (9, 7) (6, 20) (7, -1) (3, 9) (9, 6) (4, -3) 7.81 Table 1
This should be the output<br>SAMPLE OUTPUT 1<br>Please enter coordinate x1 for A: 3<br>Please enter coordinate y1 for A: 2<br>Please enter coordinate x2 for B: 9<br>Please enter coordinate y2 for B: 7<br>The distance between coordinates A an B is: 7.81<br>Please enter coordinate x1 for A: -15<br>Please enter coordinate y1 for A: -12<br>Please enter coordinate x2 for B: 6<br>Please enter coordinate y2 for B: 20<br>SAMPLE OUTPUT 2<br>Please enter coordinate x1 for A: X<br>Please enter coordinate y1 for A:<br>Please enter coordinate x2 for B:<br>Please enter coordinate y2 for B:<br>The distance between coordinates A an B is: 0.00<br>Invalid input..<br>Please help me.<br>

Extracted text: This should be the output SAMPLE OUTPUT 1 Please enter coordinate x1 for A: 3 Please enter coordinate y1 for A: 2 Please enter coordinate x2 for B: 9 Please enter coordinate y2 for B: 7 The distance between coordinates A an B is: 7.81 Please enter coordinate x1 for A: -15 Please enter coordinate y1 for A: -12 Please enter coordinate x2 for B: 6 Please enter coordinate y2 for B: 20 SAMPLE OUTPUT 2 Please enter coordinate x1 for A: X Please enter coordinate y1 for A: Please enter coordinate x2 for B: Please enter coordinate y2 for B: The distance between coordinates A an B is: 0.00 Invalid input.. Please help me.
Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here