I am new to programming and looking for help into finding the distance between points
What I currently have is this:
import java.util.*;
class WS8Q2 {
public static void main(String[] args){
Scanner in = new Scanner (System.in);
double x0=0;
double x1=0;
double y0=0;
double y1=0;
System.out.println("Please enter 4 numbers");
x0=in.nextDouble();
double distance = (x0, y1, x1, y0);
System.out.print(answer);
}
public static double distance (x0, y1, x1,y0) {
return Math.Sqrt ((x1 - y0) * (y1-y0) + (x1-x0) * (x1-x0));
}
I am really unsure of how to do it, as I have never done distances before, and I am just completely lost, have tried to look up certain formulas but the only thing I found that seemed as some what useful to me is in this website link Which doesn't seem to say much to me
EDIT: Here is the question and what I am trying to achieve by the way:
Design a function distance that takes four fractional number parameters x0, y0, x1, and y1, and returns the distance between points (x0, y0) and (x1, y1). (Look up the formula if you can’t remember it!)
First, you want to print
distance
notanswer
. Second, it gave you the answer on your link.... try thisThe formula for finding the distance between two points is precisely the same as the Pythagorean Theorem, find the length of the hypotenuse. That is c2 = a2 + b2.
Finally, you need to read in all four doublle(s)... not just one.