C
coolerouny
kann mit jemand sagen wie ich zwie klassen verbinden kann?
also dass ich hier "getDistance" in einer anderen klasse hab
mfg
coolerouny
also dass ich hier "getDistance" in einer anderen klasse hab
Code:
import java.awt.*;
public class Distance
{
Point A = new Point(100,100);
Point B = new Point(200,200);
public int getDistance(int x1,int y1, int x2, int y2)
{
//c² = a² + b²
int c;
c = (int)( Math.sqrt( Math.pow((x2-x1),2) + Math.pow((y2-y1),2)) );
// c = wurzel aus |--------a²-------| + |---------b²-------|
return c;
}
public static void main(String args[])
{
new Distance();
}
Distance()
{
int dis = getDistance(A.x,A.y,B.x,B.y); //berechnen
System.out.println("der abstand ist " + dis);
}
}
mfg
coolerouny