Advertisement
Carlettos

Cuadrado xd

Nov 16th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. package clases;
  2.  
  3. public class Cuadrado {
  4.     private double lado;
  5.    
  6.     public Cuadrado (double lado){
  7.     }
  8.    
  9.     @Override
  10.     public String toString(){
  11.         return "Cuadrado{" + "lado = " + this.lado + "}";
  12.     }
  13.    
  14.     public double getArea(){
  15.        
  16.     }
  17.    
  18.     public double getPerimetro(){
  19.    
  20.     }
  21.    
  22.     public double getLado(){
  23.    
  24.     }
  25.    
  26.     public double setLado(double lado){
  27.        
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement