FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

GitHub Viewer

public class Rectangle extends MyShape { private int length, height; public Rectangle() { length = 8; height = 10; } public Rectangle(int length, int height) { this.length = length; this.height = height; } @Override public void area() { System.out.println("Area Of Rectangle is : " + length * height + "."); } }

Back | FazBrowse Home | New Git URL