trace this java method
- by Bader
public static int ABC(int x, int y)
{
if(y==0)
return(0);
else
return(x + ABC(x,y-1));
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(ABC(5,3));
}