1 Answers
Assume there are three integers (a, b, c): int a = 46; int b = 56; int c = a + b; System.out.println(c); Don't forget the semicolons.
4 views
Answered
Assume there are three integers (a, b, c): int a = 46; int b = 56; int c = a + b; System.out.println(c); Don't forget the semicolons.