Question: Write a program using integers userNum and x as input, and output userNum divided by x four times. Ex: If the input is: 2000 2

Write a program using integers userNum and x as input, and output userNum divided by x four times.

Ex: If the input is:

2000 2 (2000 is being divided by 2 to equal 1000.

the output is:

1000 500 250 125 (1000 is divided by 2 to equal 500, etc...)

Note: In Java, integer division discards fractions. Ex: 6 / 4 is 1 (the 0.5 is discarded).

This is what I have so far:

import java.util.Scanner;

public class LabProgram {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int userNum = scnr.nextInt();
int x = scnr.nextInt();

System.out.print(userNum / x + " ");
System.out.print((userNum / x) / x + " ");
System.out.print(((userNum / x) / x) / x + " ");
System.out.println((((userNum / x) / x) / x) / x);
/* Type your code here. */
}
}

Step by Step Solution

3.28 Rating (160 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

It seems like youre working on a simple program in Java to divide a number by another number multipl... View full answer

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 Programming Questions!