Find the sum of two variables write a program
Answers
Answered by
0
Explanation:
dont know answer of questions
Answered by
0
Answer:
In Java
public class Sum
{
public static void main()
{
int a = 2;
int b = 3;
int c = a+b;
System.out.println("Sum: "+ c);
}
}
Similar questions