WAP to obtain three number and print their sum
Answers
Answered by
1
public class Operation
{ int a,b,c,s;
public void method()
{
s=a+b+c;
Sustem.out.println("Sum ="+s);
}
}
Similar questions