write a java program for addition of two numbers with blue j method
Answers
Answered by
1
Answer:
class addition
{
public static void main(String args[])
{
int a = 5;
int b = 7;
int add = a+b;
System.out.println("The sum of the numbers are: "+add):
}
}
I hope I could help you out.
Similar questions