Main.java 425 Bytes
Newer Older
Cesar Giulano Gonzalez Maqueda committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.bootcamp20_10.carteles;

public class Main {
    public static void main(String[] args){
        Forma rectangulo = new Rectangulo(10f, 5f, "Azul");
        Forma ciculo = new Circulo(9.2f, "Amarillo");

        Cartel cartel1 = new Cartel(rectangulo, "Atencion Escuela");
        Cartel cartel2 = new Cartel(ciculo, "Atencion Escuela");

        cartel1.rellenarForma();
        cartel2.rellenarForma();
    }
}