Loading...

Във форума е въведено ограничение, което позволява на потребителите единствено да разглеждат публикуваните въпроси.

Olegati avatar Olegati 7 Точки

03. Openning 91/100 - Java Advanced Retake Exam - 16 December 2020

Здравейте, 

На задача Openning от Java Advanced Retake Exam - 16 December 2020 единият тест гърми и не намирам грешката.

Employee -> https://pastebin.com/ivHEHKdF

Bakery -> https://pastebin.com/LzSQT6d4

Main -> https://pastebin.com/PbNCBfaG

Линк към Judge -> https://judge.softuni.org/Contests/Practice/Index/2704#2

Условие:


Your task is to create a bakery, which stores employees by creating the classes described below.

First, write a Java class Employee with the following properties:

  • name: String
  • age: int
  • country: String

The class constructor should receive name, age and country and override the ToString() method in the following format:

"Employee: {name}, {age} ({country})"

Next, write a Java class Bakery that has employees (a collection, which stores the entity Employee). All entities inside the repository have the same properties. Also, the Bakery class should have those properties:

  • name: String
  • capacity: int

The class constructor should receive name and capacity, also it should initialize the employees with a new instance of the collection. Implement the following features:

  • Field employeesList that holds added Employees
  • Method add(Employee employee) – adds an entity to the data if there is room for him/her.
  • Method remove(String name) – removes an employee by given name, if such exists, and returns bool.
  • Method getOldestEmployee() – returns the oldest employee.
  • Method getEmployee(string name) – returns the employee with the given name.
  • Getter getCount() – returns the number of employees.
  • report()returns a string in the following format:
    • "Employees working at Bakery {bakeryName}:
      {Employee1}
      {Employee2}
      (…)
      "

Constraints

  • The names of the employees will be always unique.
  • The age of the employees will always be with positive values.
  • You will always have an employee added before receiving methods manipulating the Space Station’s Employees.

Examples

This is an example how the Bakery class is intended to be used.

Sample code usage

//Initialize the repository

Bakery bakery = new Bakery("Barny", 10);

//Initialize entity

Employee employee = new Employee("Stephen", 40, "Bulgaria");

//Print Employee

System.out.println(employee); //Employee: Stephen, 40 (Bulgaria)

 

//Add Employee

bakery.add(employee);

//Remove Employee

System.out.println(bakery.remove("Employee name")); //false

 

Employee secondEmployee = new Employee("Mark", 34, "UK");

 

//Add Employee

bakery.add(secondEmployee);

 

Employee oldestEmployee = bakery.getOldestEmployee(); // Employee with name Stephen

Employee employeeStephen = bakery.getEmployee("Stephen"); // Employee with name Stephen

System.out.println(oldestEmployee); //Employee: Stephen, 40 (Bulgaria)

System.out.println(employeeStephen); //Employee: Stephen, 40 (Bulgaria)

 

System.out.println(bakery.getCount()); //2

 

System.out.println(bakery.report());

//Employees working at Bakery Barny:

//Employee: Stephen, 40 (Bulgaria)

//Employee: Mark, 34 (UK)

Тагове:
0
Java Advanced
MartinBG avatar MartinBG 4803 Точки

Проблемът е в Bakary#getOldestEmployee():

    public Employee getOldestEmployee() {
        int age = Integer.MIN_VALUE;
        int index = 0;
        for (int i = 0; i < this.employees.size(); i++) {
            if (this.employees.get(i).getAge() >= age) {
               index = i;
               age = this.employees.get(i).getAge(); // <--- Add this line
            }
        }
        return this.employees.get(index);
    }

 

0
Olegati avatar Olegati 7 Точки

Много благодаря, това е проблема! yes

1
Можем ли да използваме бисквитки?
Ние използваме бисквитки и подобни технологии, за да предоставим нашите услуги. Можете да се съгласите с всички или част от тях.
Назад
Функционални
Използваме бисквитки и подобни технологии, за да предоставим нашите услуги. Използваме „сесийни“ бисквитки, за да Ви идентифицираме временно. Те се пазят само по време на активната употреба на услугите ни. След излизане от приложението, затваряне на браузъра или мобилното устройство, данните се трият. Използваме бисквитки, за да предоставим опцията „Запомни Ме“, която Ви позволява да използвате нашите услуги без да предоставяте потребителско име и парола. Допълнително е възможно да използваме бисквитки за да съхраняваме различни малки настройки, като избор на езика, позиции на менюта и персонализирано съдържание. Използваме бисквитки и за измерване на маркетинговите ни усилия.
Рекламни
Използваме бисквитки, за да измерваме маркетинг ефективността ни, броене на посещения, както и за проследяването дали дадено електронно писмо е било отворено.