logo Practice-It logo

BJP5 Exercise 4.6: printRange

Author: Marty Stepp (on 2019/09/19)

Write a method called printRange that accepts two integers as arguments and prints the sequence of numbers between the two arguments, separated by spaces. Print an increasing sequence if the first argument is smaller than the second; otherwise, print a decreasing sequence. If the two numbers are the same, that number should be printed by itself. Here are some sample calls to printRange:

printRange(2, 7);
printRange(19, 11);
printRange(5, 5);

The output produced should be the following:

2 3 4 5 6 7 
19 18 17 16 15 14 13 12 11 
5 
Type your solution here:


This is a method problem. Write a Java method as described. Do not write a complete program or class; just the method(s) above.

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.