Question: Write a program using integers userNum and divNum as input, and output userNum divided by divNum three times. Example: If the input is: 2000 2
Write a program using integers userNum and divNum as input, and output userNum divided by divNum three times. Example: If the input is: 2000 2 the output is: 1000 500 250
Use the default template below to complete your program.
import java.util.Scanner;
public class LabProgram
{ public static void main(String[] args)
{ /* Type your code here. */ } }
Note: In Java, integer division discards fractions. Ex: 6 / 4 is 1 (the 0.5 is discarded).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
