-
Notifications
You must be signed in to change notification settings - Fork 964
Проектная работа #376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Open
Проектная работа #376
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
91 changes: 89 additions & 2 deletions
src/main/java/Main.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,93 @@ | ||
| import java.util.Scanner; | ||
|
|
||
|
|
||
| public class Main { | ||
| public static void main(String[] args) { | ||
| System.out.println("Hello world!"); | ||
| Scanner scanner = new Scanner(System.in); | ||
|
|
||
| final int RaceleMan = 24; | ||
| final int CarCount = 3; | ||
|
|
||
| Auto[] cars = new Auto[CarCount]; | ||
|
|
||
| for (int i = 0; i < CarCount; i++) { | ||
| System.out.println("Введи название машины " + (i + 1) + ":"); | ||
| String name = scanner.nextLine().trim(); | ||
|
|
||
| int speed; | ||
| while (true) { | ||
| System.out.println("Введи скорость " + (i + 1) + " (целое число, >0 и ≤250):"); | ||
| String input = scanner.nextLine().trim(); | ||
| try { | ||
| speed = Integer.parseInt(input); | ||
| if (speed > 0 && speed <= 250) { | ||
| break; | ||
| } else { | ||
| System.out.println("Некорректное значение. Пробуй снова."); | ||
| } | ||
| } catch (NumberFormatException e) { | ||
| System.out.println("Введи целое число."); | ||
| } | ||
| } | ||
|
|
||
| cars[i] = new Auto(name, speed); | ||
| } | ||
|
|
||
| Race race = new Race(cars); | ||
| Auto leader = race.madeLider(); | ||
|
|
||
| System.out.println("Самая быстрая машина: " + (leader != null ? leader.getName() : "не найден")); | ||
| scanner.close(); | ||
| } | ||
| } | ||
|
|
||
|
|
||
| class Auto { | ||
| private final String name; | ||
| private final int speed; | ||
|
|
||
| public Auto(String name, int speed) { | ||
| this.name = name; | ||
| this.speed = speed; | ||
| } | ||
|
|
||
| public String getName() { | ||
| return name; | ||
| } | ||
|
|
||
| public int getSpeed() { | ||
| return speed; | ||
| } | ||
|
|
||
| public int distanceЗа24Часа() { | ||
| return speed * 24; | ||
| } | ||
| } | ||
|
|
||
|
|
||
| class Race { | ||
| private final Auto[] cars; | ||
| private final Auto leader; | ||
|
|
||
| public Race(Auto[] cars) { | ||
| this.cars = cars; | ||
| this.leader = determineLeader(); | ||
| } | ||
|
|
||
| private Auto determineLeader() { | ||
| Auto maxCar = null; | ||
| int maxDistance = -1; | ||
| for (Auto car : cars) { | ||
| int dist = car.distanceЗа24Часа(); | ||
| if (dist > maxDistance) { | ||
| maxDistance = dist; | ||
| maxCar = car; | ||
| } | ||
| } | ||
| return maxCar; | ||
| } | ||
|
|
||
| public Auto madeLider() { | ||
| return leader; | ||
| } | ||
| } | ||
| } |
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.