InterviewSolution
Saved Bookmarks
| 1. |
Write Java code to assign the value 70 to variable y. Then decrease the value of y by 5 and store it in variable z. |
|
Answer» y = 70; z = y - 5; or y = 70; y = y - 5; z = y; |
|