/
akupan2012
/
kursova
Обзор
Документация
Войти
/
akupan2012
/
kursova
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
TextColorSchemaImpl.java
16 строк
555 B
akupan2012
upload files
19 янв 2026, 15:48
Верифицирован
19 янв 2026, 15:48
0a0929a
Код
Авторство
О чём код?
package ru.netology.graphics.image; public class TextColorSchemaImpl implements TextColorSchema { private final char[] symbols; public TextColorSchemaImpl() { this.symbols = new char[]{'#','$','@','%','*','+','-','/',}; } @Override public char convert(int color){ int index = (int) ((color/255.0)*(symbols.length-1)); index = symbols.length - 1 - index; if (index < 0) index = 0; if (index >= symbols.length) index = symbols.length - 1; return symbols[index]; } }