Java Practice-it | Primitive Data and Definite Loops | Self-Check 2.14 : firstSecond

preview_player
Показать описание
Topics:
basics, mystery, variables

Question:
What are the values of first and second at the end of the following code?
int first = 8;
int second = 19;
first = first + second;
second = first - second;
first = first - second;

Problem:
Рекомендации по теме