Computer Science, asked by NawaabSahab, 8 months ago

Output Question int z [] = {39, 42, 36, 45,75, 98};
System.out.println(z [3]+ "," z[4] * 2);​

Answers

Answered by StephenDeva
0

Answer:

Output: Error (becz you forget to add "+" symbol)

Correct coding should be: System.out.println(z [3]+ "," + z[4] * 2);

Then the output will be: 45,150

Similar questions