Respuestas
Respuesta dada por:
0
Respuesta:
public class Rectangle {
private int width;
private int height;
/**
* @param width
* @param height
*/
public Rectangle(int width, int height) {
super();
this.width = width;
this.height = height;
}
public int calculatePerimeter() {
return width*2+height*2;
}
}
Explicación:
En java, puedes hacer la clase Rectángulo al cual en el constructor le entra como parámetros el ancho y el largo, luego puedes tener el método de calcular perímetro el cual solo devuelve la operacion aritmetica
Preguntas similares
hace 3 años
hace 3 años
hace 6 años
hace 8 años
hace 8 años