sDistance. The calculation is: Distance=(x2−x1)2+(y2−y1)2 Ex: For points (1.0, 2.0) and (1.0, 5.0), pointsDistance is 3.0. #include

CMPTR
3rd Edition
ISBN:9781337681872
Author:PINARD
Publisher:PINARD
Chapter13: Creating A Workbook
Section: Chapter Questions
Problem 8QY
icon
Related questions
Question

using C++ Determine the distance between point (x1, y1) and point (x2, y2), and assign the result to pointsDistance. The calculation is:

Distance=(x2−x1)2+(y2−y1)2


Ex: For points (1.0, 2.0) and (1.0, 5.0), pointsDistance is 3.0.

#include <iostream>
#include <cmath>
using namespace std;

int main() {
double x1;
double y1;
double x2;
double y2;
double xDist;
double yDist;
double pointsDistance;

xDist = 0.0;
yDist = 0.0;
pointsDistance = 0.0;

cin >> x1;
cin >> y1;
cin >> x2;
cin >> y2;

pointsDistance = sqrt(pow x,2

cout << pointsDistance << endl;

return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 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
CMPTR
CMPTR
Computer Science
ISBN:
9781337681872
Author:
PINARD
Publisher:
Cengage
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
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning