```
package happyCl;
import java.util.Random;
public class nohappy {
public class Point {
int x;
int y;
public Point() {
this.x = (int) (Math.random() * 10);
this.y = new Random().nextInt(10);
}
}
static double distance(Point p1, Point p2) {
double dist;
dist=Math.sqrt((50-p1.x)*(50-p2.x) +(50-p1.y)*(50-p2.y));
return dist;
}
public static void main(String[] args) {
}
}
```
랜덤좌표에서 (50,50) 이랑 거리구하는건데요, public static void main(String[] args) {}이거를 어디에 넣어야할지도 모르겠고, 저렇게하면 맞는건지도 잘 모르겠어요...
sehongpark님의 답변
네 문제로 만들어서 정리되는대로 다시 답글 달아드릴게요.
sehongpark님의 답변
## Point 클래스와 두 점 사이의 거리
관련 코드를 문제로 만들어 보았습니다.
+ http://cloudstudying.kr/codes/1515
oreaocream님의 답변
감사합니다!