Question: What is the output from the following code? int max; int min = 10; max = 17 4 / 10; max = max +
What is the output from the following code?
int max;
int min = 10;
max = 17 − 4 / 10;
max = max + 6;
min = max − min;
System.out.println(max * 2);
System.out.println(max + min);
System.out.println(max);
System.out.println(min);
Step by Step Solution
3.38 Rating (151 Votes )
There are 3 Steps involved in it
Outpu... View full answer
Get step-by-step solutions from verified subject matter experts
