Determine the distance between point (x1, y1) and point (x2, y2), and assign the
ID: 3586491 • Letter: D
Question
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.
Code:
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;
}
}
Explanation / Answer
Answer:
pointsDistance = Math.sqrt((x2-x1) * (x2-x1) + (y2-y1) * (y2-y1));
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 */
pointsDistance = Math.sqrt((x2-x1) * (x2-x1) + (y2-y1) * (y2-y1));
System.out.print("Points distance: ");
System.out.println(pointsDistance);
return;
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.