Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

public class ActualNFormalParameter {

public static void main(String[] args) {


// TODO Auto-generated method stub

System.out.println(mult(14,5));
}

public static int mult(int x, int y)


{
return x * y;
}

int length = 10;


int width = 5;
int area = mult(length, width);

You might also like