Write Java code (statements) to declare Y as integer variable. Then, assign the value 30 to a
variable Y. Increase the value of Y by 5 and store the increased value in Z.
Answers
Answered by
2
Answer:
int y ; y = 30; y+ = 5; int z = y
Similar questions