Question 3 of 5 -- of 5 points Chapter 2: Programming Project 3 Unlimited tries (Geometry: distance of two points) Write
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Question 3 of 5 -- of 5 points Chapter 2: Programming Project 3 Unlimited tries (Geometry: distance of two points) Write
Question 3 of 5 -- of 5 points Chapter 2: Programming Project 3 Unlimited tries (Geometry: distance of two points) Write a program that prompts the user to enter two points (x1, y1) and (x2, y2) and displays their distance between them. The formula for computing the distance is: Square root of ((x2-x1) squared + (y2 - y1) squared) Note that you can use pow (a, 0.5) to compute square root of a. Sample Run Enter x1 and yl: 1.5 -3.4 Enter x2 and y2: 4 5 The distance between the two points is 8.764131445842194 For a hint on this program, please see https://liangcpp.pearsoncmg.com/cpprevel2e.html. If you get a logic or runtime error, please refer to https://liangcpp.pearsoncmg.com/faq.html. 1 Enter your code: