Question: Complete the method, printMultiples(), that takes in a positive integer n, and another positive integer, max. Print out all the multiples of n that are
Complete the method, printMultiples(), that takes in a positive integer n, and another positive integer, max. Print out all the multiples of n that are less than or equal to max. Print each multiple on a separate line. For example, if the method is called with n=3 and max=20 the output should be:
3
6
9
12
15
18
You may assume that both n and max are positive integers and that n Starter Code: public class Average { public static void printMultiples(int n, int max) { //TODO: complete this method } public static void main(String[] args) { Scanner s = new Scanner(System.in); System.out.println("Enter a positive integer:") int n = s.nextInt(); System.out.println("Enter a maximum positive integer:") int max = s.nextInt(); printMultiples(n,max); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
