Question: Question Scanner in = new Scanner (System.in) ; System.out.println(Please enter: > ) ; int a = in.nextInt( ) ; for (int i = 0; i
Question
Scanner in = new Scanner (System.in) ;
System.out.println("Please enter: >" ) ;
int a = in.nextInt( ) ;
for (int i = 0; i < 5; i++) {
System.out.print(a + " " ) ;
if (a < 5) {
a = a - i ;
} else {
a = a + 1 ;
if (a == 2) {
break ;
}
}
}
What output would this program fragment produce when executed with the following input? Write your corresponding output values in the output column. If you think no output is produced, write None.
Input Value Output
10
3
5
0
4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
