Computer Science, asked by sharmistadebbarma, 7 months ago

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 amarbsalil
2

Answer:

int y ; y = 30; y+ = 5; int z = y

Similar questions