Hello every one,
i pleased you to help me to do this assignment. i tried many time but i fail.i attach acopy of the assignment.
http://www.iraqup.com/up/20101229/8R..._412626769.GIF
Printable View
Hello every one,
i pleased you to help me to do this assignment. i tried many time but i fail.i attach acopy of the assignment.
http://www.iraqup.com/up/20101229/8R..._412626769.GIF
What are you having problems with (specifically)? Please post any relevant code you have, as well as any error messages you are getting (if any).
Hello and welcome to the forums.
You have posted in the What's Wrong With My Code? forum although you have not attached any code.
Have you started this yet? You need to show you have made an effort before we can help you move forward.
hi ,
i'll attach the code an other time.
That's not how this works. We are not a code service. If you want one, you're going to have to pay for it. How much are you offering? See the link in my signature on asking smart questions.
You can't just dump your homework and your code here and expect us to fix it for you. Ask a specific question- that requires boiling your code down to an SSCCE, as specific a piece as possible while still being runnable.
You aren't going to get any help before you do that.
Not shockingly at all, this gem has been crossposted: Please, help me... - Java Forums
here's a starter, just for Point
Code :public class Point { private int x1 ; private int y1 ; // negative sign in class diagram means private, plus sign means public public Point(){ x1=0; y1=0; } public Point(int x2 , int y2 ){ x1 = x2; y1 = y2; } public double distance ( int x , int y ) { // do your distance function here. // return 0.0; } public String toString(){ return "Points: (" + x1 + "," + y1 + ")"; } }