InterviewSolution
Saved Bookmarks
| 1. |
Write a java program to add two numbers and print their sum |
|
Answer» ong>ANSWER: Explanation: { public static void main() { int a=5; int b=7; int C=a+b; System.out.println(c); } } |
|