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
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
Chapter13: Creating A Workbook
Section: Chapter Questions
Problem 8QY
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
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
Knowledge Booster
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.Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning