import java.util.*;
public class Aplicuadrados
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
//variables
int ll,a,p;
System.out.println("Teclea el valor del lado" + "\t");
ll = sc.nextInt();
// GENERADOR DE OBJETOS HEREDEROS DE LA CLASE SOPORTE
cuadrados e1 = new cuadrados();
e1.set_lado(ll);
a=e1.calc_area();
p=e1.calc_perimetro();
System.out.println("El area es: "+a);
System.out.println("El perimetro es: "+p);
} // del main
} // de la clase
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.