Home | Computer Science

write a programme using function

class thirtytwo
{
public static void main(String args[])
{
loop();
}
public static void loop()
{
int a,b,c;
a=0;
b=10;
c=a+b;
System.out.println(c);
}
}

OUTPUT


Write a programme using function

class thirtythree
{
public static void main(String args[])
{
loop(10,10);
}
public static void loop(int a, int b)
{
int c;
c=a+b;
System.out.println(c);
}
}

OUTPUT


©2022