Question: In Java Determine the distance between point (x1, y1) and point (x2, y2), and assign the result to pointsDistance. The calculation is: Distance = SquareRootOf(

In Java Determine the distance between point (x1, y1) and point (x2, y2), and assign the result to pointsDistance. The calculation is: Distance = SquareRootOf( (x2 - x1)2 + (y2 - y1)2 ) You may declare additional variables. Ex: For points (1.0, 2.0) and (1.0, 5.0), pointsDistance is 3.0.

import java.util.Scanner; import java.lang.Math;

public class CoordinateGeometry { public static void main(String [] args) { double x1 = 1.0; double y1 = 2.0; double x2 = 1.0; double y2 = 5.0; double pointsDistance = 0.0;

/* Your solution goes here */

System.out.print("Points distance: "); System.out.println(pointsDistance);

return; } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!