Computer Science, asked by ankajshk, 4 days ago

Plz send me a Program involving member methods,provoking of methods.​

Answers

Answered by dhruvsharma30nov2006
0

Answer:

It is for Java

Explanation:

class cw

{ public int sum(int a, int b)

{ int c= a+b;

return c;}

public void main()

{ int s=cw.sum(4,5)

System.out.println("sum="+s);}}

Similar questions