Question: Rewrite the code from the previous exercise to be shorter, by declaring the variables together and by using the special assignment operators (e.g., += ,
Rewrite the code from the previous exercise to be shorter, by declaring the variables together and by using the special assignment operators (e.g., += , −= , *= , and /= ) as appropriate.
Data from Previous Problem
int first = 8;
int second = 19;
first = first + second;
second = first − second;
first = first − second;
Step by Step Solution
3.42 Rating (168 Votes )
There are 3 Steps involved in it
Rewritten shortened ve... View full answer
Get step-by-step solutions from verified subject matter experts
