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.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
y = 70;
z = y – 5;
or y = 70;
y = y – 5;
z = y;