0
Algorithm of program
public class SumOfTwoNumbers { public static void main(String[] args) { int a = 2; int b = 3; int c = a + b; System.out.println("Sum of " + a + " and " + b + " is: " + c); } }
1 Odpowiedź
+ 9
What is your question?
public class SumOfTwoNumbers { public static void main(String[] args) { int a = 2; int b = 3; int c = a + b; System.out.println("Sum of " + a + " and " + b + " is: " + c); } }