/
Ersh
/
Diplom_netology
Обзор
Документация
Войти
/
Ersh
/
Diplom_netology
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
TextColorSchemaImpl.java
13 строк
419 B
Ersh
upload files
18 ноя 2025, 18:13
18 ноя 2025, 18:13
2a2f69b
Код
Авторство
О чём код?
package ru.netology.graphics.image; import ru.netology.graphics.image.TextColorSchema; public class TextColorSchemaImpl implements TextColorSchema { private static final char[] CHARS = {'#', '$', '@', '%', '*', '+', '-', '\''}; @Override public char convert(int color){ int index = (int) Math.round((double) color / 255 * (CHARS.length - 1)); return CHARS[index]; } }