/
maksh
/
hw12
Обзор
Документация
Войти
/
maksh
/
hw12
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Address.java
25 строк
531 B
maksh
upload files
27 июн 2025, 18:56
27 июн 2025, 18:56
cb6c289
Код
Авторство
О чём код?
public class Address { private String country; private String city; public Address(String country, String city) { this.country = country; this.city = city; } public String getCountry() { return country; } public String getCity() { return city; } @Override public String toString() { return "Address{" + "country='" + country + '\'' + ", city='" + city + '\'' + '}'; } }