Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

What is job enlargement ?

Answered: 1 week ago

Question

what is the most common cause of preterm birth in twin pregnancies?

Answered: 1 week ago

Question

Which diagnostic test is most commonly used to confirm PROM?

Answered: 1 week ago

Question

What is the hallmark clinical feature of a molar pregnancy?

Answered: 1 week ago