public class Circulos implements FormasInterface{ float radio; String color; final static float pi=3.14f; public void Circulo(float radio, String color){ this.radio=radio; this.color=color; } public boolean cartelesCirculos(String texto){ if(texto.length()>=radio){ return true; }else{ return false; } } }