Conversation
i-masloed
reviewed
Oct 22, 2023
| @@ -0,0 +1,52 @@ | |||
| import java.util.ArrayList; | |||
| import java.util.List; | |||
There was a problem hiding this comment.
- В java принят определенный стиль форматирования кода. Если не вдаваться в подробности, то отформатировать код можно быстрой комбинаций клавиш Ctrl+Alt+L(Windows) или (⌘+⌥+L)(Mac)
| import java.util.Scanner; | ||
|
|
||
| public class Guests { | ||
| static Scanner scanner = new Scanner(System.in); |
There was a problem hiding this comment.
Рекомендация: хорошей практикой является делать вызов scanner.close() после того, как сканнер больше не используется. Это необходимо для того, что бы этот объект не потреблял ресурсы, тогда когда это уже не требуется.
i-masloed
reviewed
Oct 30, 2023
| String format = String.valueOf((int) price); | ||
| int preLastDigit = Integer.parseInt(format) % 100 / 10; | ||
| if (preLastDigit == 1) | ||
| { |
There was a problem hiding this comment.
Рекомендация: - Форматирование кода - в Java принят немного другой стиль форматирования кода. Если не вдаваться в детали, то легко и быстро отформатировать код в Android Studio можно следующей комбинацией клавиш: в Windows Ctrl + Alt + L , в MacOs ⌘ + ⌥ + L.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Для удобства создал 2 отдельных класса:
1)Калькулятор - в нем отобразил всю систему связанную с добавлением товара и его цены, а так же итоговое отображение всего введенного пользователя.
2)Гости - этот класс служит для запроса и в дальнейшем для отображения количества персон, на которые и будет делиться итоговый счет на равные доли.
И главный класс Main, который был создан изначально, в нем отобразил приведение слова "рубль" в зависимости от целочисленной части и итоговое деление на персоны.