Advertisement
cowiUY

Práctico 13 java

Jun 18th, 2024 (edited)
576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.48 KB | None | 0 0
  1. //CLASE MAIN
  2.  
  3. package main;
  4.  
  5. import objetos.Rectangulo;
  6.  
  7. public class Main {
  8.  
  9.     public static void main(String[] args) {
  10.        
  11.         Rectangulo forma = new
  12.                 Rectangulo(10,7);
  13.        
  14.         forma.imprimirFigura();
  15.     }
  16. }
  17.  
  18.  
  19.  
  20. //OBJETO RECTANGULO
  21.  
  22. package objetos;
  23.  
  24. import java.util.Iterator;
  25.  
  26. public class Rectangulo {
  27.    
  28.     private Double largo;
  29.     private Double ancho;
  30.  
  31.     public Rectangulo(double largo, double ancho) {
  32.         this.largo = largo;
  33.         this.ancho = ancho;
  34.     }
  35.    
  36.     public Double getLargo() {
  37.         return largo;
  38.     }
  39.  
  40.     public Double getAncho() {
  41.         return ancho;
  42.     }
  43.    
  44.     public Double calcularArea() {
  45.         return largo * ancho;
  46.     }
  47.    
  48.    
  49.    
  50.     public void imprimirFigura() {
  51.         for (int i = 0; i < ancho; i++) {
  52.             for (int j = 0; j < largo; j++) {
  53.                 if (i == 0 || i == ancho-1) {
  54.                     System.out.print("*");
  55.                 }
  56.                 else if (j == 0 || j == largo-1) {
  57.                     System.out.print("*");
  58.                 } else {
  59.                     System.out.print(" ");
  60.                 }
  61.             }
  62.             System.out.print("\n");
  63.         }
  64.     }
  65. }
  66.  
  67.  
  68. //COLLECION RECTANGULO
  69.  
  70. package main;
  71.  
  72. import java.util.Iterator;
  73.  
  74. import objetos.Rectangulo;
  75.  
  76. public class ColeccionRectangulo {
  77.  
  78.     private Rectangulo[] arreglo;
  79.    
  80.     public ColeccionRectangulo(int tamanio) {
  81.        
  82.         arreglo = new Rectangulo[tamanio];
  83.        
  84.         for (int i = 0; i < tamanio; i++) {
  85.             int largo   = (int) (Math.random()*10);
  86.             int ancho   = (int) (Math.random()*8);
  87.            
  88.             Rectangulo rectangulito = new Rectangulo(largo, ancho);
  89.             arreglo[i] = rectangulito;
  90.         }
  91.        
  92.     }
  93.  
  94. }
  95.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement