You have two numbers 5 & 7 which you need to add. Write the input, processing & output for the given number.
Answers
Answered by
0
Answer:
Explanation:
class abc
{
public void display()
{
int a =5;
int b=7;
int c=a+b;
System.out.println(c);
}
}
output : 12
hope it helps...please mark me as the brainliest...if you get satisfied with this answer
Similar questions