write java program to print sum of two no.
Answers
Answered by
4
Answer:
class sum {
public static void main(String args[])
{
int a=6;
int b=4;
int c;
int c= a+b;
System.out.println(Sum is "+c);
}
}
Thank you
If you need help you can ask me
Similar questions