Search found 1 match

by gaber
Mon Feb 08, 2010 12:11 am
Forum: Volume 1 (100-199)
Topic: 155 - All Squares
Replies: 11
Views: 3885

Re: 155

i solved that problem by recursion but i dont know y it doesnt work .
here is my code any one find the mistake please tell me and thanks in advance.


//still wrong
import java.util.Scanner;

class point
{
double x;
double y;
point(double i,double j)
{
x = i;
y = j;
}
}
public class ...

Go to advanced search