Question: int max = Integer.MIN_VALUE; int num = 0; while (num != -1) { System.out.println(enter a positive int, or -1 to stop); num = scan.nextInt(); if
int max = Integer.MIN_VALUE; int num = 0; while (num != -1) { System.out.println("enter a positive int, or -1 to stop"); num = scan.nextInt(); if (num > max) { max = num; } } System.out.println("the max entered is: " + max); What does this previous block of code do?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
