how to write a program in java to find the sum of two numbers in blue j
pls answer i will make them brainliest
....
Answers
Answered by
3
Explanation:
public class sum
{
public static void main (int a,int b)
{
int sum=0;
sum=a+b;
System.out.println(sum);
}
}
Similar questions