Problem #914 C++ using OBJECT ORIENTED PROGRAMMING

Write a C++ program to create an abstract class GeometricShape with abstract methods area() and perimeter(). Create derived classes Triangle and Square that extend the GeometricShape class and implement the respective methods to calculate the area and perimeter of each shape

Your Solution