Only 3.9% of viewers are subscribing to my channel 😓.
I request you to please give click on Subscribe button.
It really helps me grow 😢.
Source Code
-------------------------------
public class Test
{
int x;
int y;
static int res;
int add(int a,int b)
{
x=a;
y=b;
int sum = a+b;
return sum;
}
public static void main(String args[])
{
Test m1;
m1 = new Test();
int value = m1.add(20,15);
System.out.println("Sum is : "+value);
}
}
------------------------------------
No comments:
Post a Comment