nishant-ai / DSA-Help

This is a respository for helping students learn DSA in different Programming Languages.
MIT License
140 stars 87 forks source link

added an abstract class program of java #219

Closed pkini2002 closed 1 year ago

pkini2002 commented 1 year ago

Added an abstract class program that has an abstract class Figure with an abstract method area and two integer dimensions. Extend this class to inherit three more classes Rectangle, Triangle, and Square which implement the area method.