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
Step: 1
import javautilScanner public class LabProgram ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get StartedRecommended Textbook for
John E Freunds Mathematical Statistics With Applications
Authors: Irwin Miller, Marylees Miller
8th Edition
978-0321807090, 032180709X, 978-0134995373
Students also viewed these Programming questions
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
View Answer in SolutionInn App