InterfacesDia3.java 1.41 KB
Newer Older
Nelson Ruiz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

 interface Formas{

    boolean cuadraTexto();
}


class Circulo implements Formas{
    float area;
    float radio;
    String color;
    String letras;
    public Circulo(float radio,String color,String letras){
        this.radio=radio;    
        this.color=color;
        this.letras=letras;
    }
    public boolean cuadraTexto(){
        if(this.letras.length()<=this.radio){
            return true;
        }
        return false;
    }
}


class Rectangulo implements Formas{

        float largo;
        float ancho;
        float area;
        String color;
        String letras;
        public Rectangulo(float largo,float ancho,String color,String letras){
            this.largo=largo;
            this.ancho=ancho;
            this.color=color;
            this.letras=letras;
        }

        public boolean cuadraTexto(){
            if(this.letras.length()<=this.largo){
                return true;
            }
            return false;
        }
}



public class InterfacesDia3 {
    public static void main(String[] args) {

       
        Rectangulo cartelRectangulo=new Rectangulo(5,2,"ROJO","HOLA");
        System.out.println("Es la dimension correcta para la forma de un rectangulo?: "+cartelRectangulo.cuadraTexto());
        Circulo cartelCirculo=new Circulo(4, "ROJO", "PALABRA");
        System.out.println("Es la dimension correcta para la forma de un circulo?: "+cartelCirculo.cuadraTexto());
    }
}