I NEED SERIOUS HELP WITH JAVA SHAPES PROJECT IT HAS TO BE CRUEL JOKE....
I've tried everything for weeks... I've typed in so many random sequences of characters that the laws of probability say I should've gotten it right because nothing else could possibly be wrong-- It's rigged.... I understand the syntax and concept it is something wrong with this app do not need syntax I understand clearly it works fine in my compiler-- need answer to mark it off as right so I can be done with Java portion on this app... Thank you in advance :-) import java.util.Scanner; //import java.lang.Math* abstract class Shape { int width; abstract void area(); } public class Square extends Shape{ Square(int x){ width=x; } public void area(){ System.out.println(width*width); } public class Circle extends Shape{ Circle(int y){ width = y; } public void area(){ System.out.println(Math.PI*width*width); } } } public class Program { public static void main(String[ ] args) { Scanner sc = new Scanner(System.in)