/
triii
/
Adapter
Обзор
Документация
Войти
/
triii
/
Adapter
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/square/SquarePeg.java
19 строк
329 B
Elena
first_commit
26 сен 2024, 17:06
26 сен 2024, 17:06
5a7d365
Код
Авторство
О чём код?
package square; public class SquarePeg { private double width; public SquarePeg(double width) { this.width = width; } public double getWidth() { return width; } public double getSquare() { double result; result = Math.pow(this.width, 2); return result; } }