Задача 56. Фигуры. Нужно вывести площади фигур. Не проходит 3-ий тест, хотя остальные нормально проходит, может кто помочь?
import java.util.Scanner; abstract class Shape { int width; abstract void area(); } //введите код сюда public class Square extends Shape{ Square (int x) { width = x; } @Override void area(){ System.out.println(width*width); } } public class Circle extends Shape{ Circle (int y) { width = y; } @Override void area () { System.out.println(width*width*Math.PI); } } // конец кода 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(); } }