Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Проектная работа #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
dernov333-ai wants to merge 3 commits into Yandex-Practicum:dev
base: dev
Choose a base branch
Loading
from dernov333-ai:dev
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 89 additions & 2 deletions src/main/java/Main.java
View file Open in desktop
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;
}
}
}

AltStyle によって変換されたページ (->オリジナル) /