Question: CHALLENGE ACTIVITY 4 . 2 . 2 : While loops. 5 2 8 0 4 0 . 3 4 8 9 5 2 8 .

CHALLENGE
ACTIVITY
4.2.2: While loops.
528040.3489528.q3zqy7
Jump to level 1
Integer userlnput is read from input. Write a while loop that iterates until userInput is less than or equal to 0. In each iteration:
Update userInput with the difference of userInput and 3.
Output the updated userInput, followed by a newline.
Click here for example
import java.util.Scanner;
public class DifferenceCalculator {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
int userInput;
userInput = scnr. nextInt () ;
Your code goes here */
}
}
1
3
Feedback?
 CHALLENGE ACTIVITY 4.2.2: While loops. 528040.3489528.q3zqy7 Jump to level 1 Integer

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!