Main Page → Problems → Solve a Problem
Exercise 4.6: smallestLargest
Write a method named smallestLargest that asks the user to enter numbers, then prints the smallest and largest of all the numbers typed in by the user. You may assume the user enters a valid number greater than 0 for the number of numbers to read. Here is an example dialogue:
How many numbers do you want to enter? 4 Number 1: 5 Number 2: 11 Number 3: -2 Number 4: 3 Smallest = -2 Largest = 11
If you do not understand how to solve a problem or why your solution code doesn't work, please contact your TA or instructor.
If something seems wrong with the Practice-It system itself (errors, slow performance, incorrect problem descriptions/tests, etc.), please
contact us.
Is there a problem?
Contact a Practice-It administrator.
Practice-It! web application and problems are copyright © Marty Stepp unless otherwise specified.
Problems from Building Java Programs textbook are copyright © Pearson.
Any non-educational usage of the content on this site is expressly forbidden without written permission.
All rights reserved.
Show/Hide Description
Re-indent