C++ Program to make such a pattern like a pyramid with numbers increased by 1

By: Prof. Dr. Fazal Rehman Shamil | Last updated: March 3, 2022

Write a program in C++ to make such a pattern like a pyramid with numbers increased by 1 by using the virtual base class in object oriented programming.

logic of C++ program to print pyramid pattern of numbers

Output

Enter the number of Rows. 4

1

22

33

4444

Leave a Reply