Exercise 2 - Numbers Create a new class called Numbers that contains a method called nextLargest. This method should accept an array of numbers and an integer, and output the next bigger number that is found in the array or the maximum possible int value, if none are larger. Using this method in main to iterate through all values in a predefined array, and output the next largest number. For example, if the array is {78, 22, 56, 99, 12, 14, 17, 15, 1, 144, 37, 23, 47, 88, 3, 19} the output should look like the following (? is a placeholder): 78: 88 22: 23 56: 78 99: 144 12: 14 14: 15 17: 19 15: 17 1: 3 144: 2147483647 37: 47 23: 37 47: 56 88: 99 3: 12 19: 22 NOTE 1: If there is no bigger number in the sequence, just display the value of Integer.MAX_VALUE.This is a constant this automatically defined as a static variable inside the Integer class. NOTE 2: ? should be replaced with the appropriate number

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Use java.
Exercise 2 - Numbers
Create a new class called Numbers that contains a method called nextLargest. This
method should accept an array of numbers and an integer, and output the next bigger number
that is found in the array or the maximum possible int value, if none are larger. Using this
method in main to iterate through all values in a predefined array, and output the next largest
number.
For example, if the array is
{78, 22, 56, 99, 12, 14, 17, 15, 1, 144, 37, 23, 47, 88, 3, 19}
the output should look like the following (? is a placeholder):
78: 88
22: 23
56: 78
99: 144
12: 14
14: 15
17: 19
15: 17
1: 3
144: 2147483647
37: 47
23: 37
47: 56
88: 99
3: 12
19: 22
NOTE 1: If there is no bigger number in the sequence, just display the value of
Integer.MAX_VALUE. This is a constant this automatically defined as a static variable inside
the Integer class.
NOTE 2: ? should be replaced with the appropriate number
Transcribed Image Text:Exercise 2 - Numbers Create a new class called Numbers that contains a method called nextLargest. This method should accept an array of numbers and an integer, and output the next bigger number that is found in the array or the maximum possible int value, if none are larger. Using this method in main to iterate through all values in a predefined array, and output the next largest number. For example, if the array is {78, 22, 56, 99, 12, 14, 17, 15, 1, 144, 37, 23, 47, 88, 3, 19} the output should look like the following (? is a placeholder): 78: 88 22: 23 56: 78 99: 144 12: 14 14: 15 17: 19 15: 17 1: 3 144: 2147483647 37: 47 23: 37 47: 56 88: 99 3: 12 19: 22 NOTE 1: If there is no bigger number in the sequence, just display the value of Integer.MAX_VALUE. This is a constant this automatically defined as a static variable inside the Integer class. NOTE 2: ? should be replaced with the appropriate number
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 5 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education