Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Explain the characteristics of a good system of control

Answered: 1 week ago

Question

State the importance of control

Answered: 1 week ago

Question

What are the functions of top management?

Answered: 1 week ago

Question

Bring out the limitations of planning.

Answered: 1 week ago

Question

7. How do you currently develop your leaders?

Answered: 1 week ago