2.18 LAB: Divide input integers Write a program using integers userNum and divNum as input, and output userNum divided by divNum three times. Note: End with a newline Ex: If the input is: 2000 2 the output is 1000 500 250 Note: In Java, integer division discards fractions. Ex: 6/4 is 1 (the 0.5 is discarded). LAB 2.18.1: LAB Divide input integers 0/10 ACTIVITY LabProgram.java Load default template public static void main(String[] args) { int dividend- userfium; } 1 import java.util.Scanner; 3 public class LabProgram {
Java
Divide input integers
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images
This isn't not working for me.
import java.util.Scanner;
public class LabProgram {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int userNum = in.nextInt();
int divNum = in.nextInt();
System.out.print("What is the user number?");
userNum = scnr.nextInt();
int a, b, c;
a = userNum/divNum;
System.out.println(a);
b = a/divNum;
System.out.println(b);
c = b/divNum;
System.out.println(c);
}
}
ERROR
LabProgram.java:6: error: cannot find symbol int userNum = in.nextInt(); ^ symbol: variable in location: class LabProgram LabProgram.java:7: error: cannot find symbol int divNum = in.nextInt(); ^ symbol: variable in location: class LabProgram 2 errors