This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.joanmanera.tema08.ejercicio05; | |
| public class Ejercicio05 { | |
| public Ejercicio05(){ | |
| Punto p1 = new Punto(4.3, 7.7); | |
| Circulo c1 = new Circulo(); | |
| Circulo c2 = new Circulo(p1, 3.7); | |
| Circulo c3 = new Circulo(6.4, 2.9, 1.6); | |
| Circulo c4 = new Circulo(0, 0, 2.5); |