Skip to content
Advertisement

How to create a ‘best fit’ comparison of several integers and an input integer in Java?

I have 3 (subject to change to more rooms in the future, but that’s irrelevant) rooms, all with a different number of seats (suppose these are ‘Room’ Objects):

Room Seats
1 10
2 20
3 30

I then input a value of the number of seats I need to reserve and then my code will automatically assign the user a room based on their input with the room that has the “best fit” or closest amount capable of seats that best fits their demand. So some examples

User inputs: My Code Assigns them Room:
10 1
22 3
25 3
4 1
9 1
15 2

(Assume the inputs won’t go over 30) If the inputs go over 30 I do something else, which isn’t relevant to this question.

So here’s my attempt:

JavaScript

Is this the best way to do what I want?

Advertisement

Answer

You can do something like this

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement