0

Proyecto Java mĂłdulo 5 formas

Tengo una duda respecto al proyecto final, no sé cuål es mi error y quería ver si alguien me puede ayudar. Gracias. public class Square extends shape{ Square (int width){ this.width = width; } } Enum area(){ System.out.println(width * width); } } public class Circle extends Shape { Circle(int width ){ this.width = width; } Enum area(){ double pi = Math.PI; System.out.println(pi * width * width); } } public class Program { public static void main(String[ ] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); Square a = new Square(x); Circle b = new Circle(y); a.area(); b.area(); } }

11th May 2021, 12:39 AM
Sandra Pichardo Regalado
Sandra Pichardo Regalado - avatar
2 Answers
0
ÂżDĂłnde estĂĄ la definiciĂłn de clase shape ()? tambiĂ©n es forma () o forma ()? distingue mayĂșsculas y minĂșsculas..! ÂżPor quĂ© el tipo de retorno del mĂ©todo area () es Enum? se puede utilizar allĂ­ como vacĂ­o. ĂĄrea vacĂ­a () { .. } where is shape() class defination? also is it shape() or Shape() ? case sensitive..! why area() method return type is Enum? you can use there as void. void area(){ .. }
11th May 2021, 6:16 PM
Jayakrishna 🇼🇳
0
Alguien ha conseguido un cĂłdigo que le pase todas las pruebas??. Mi cĂłdigo pasa todos los test, menos el 3Âș
18th Aug 2021, 11:43 PM
Daniel
Daniel - avatar