Write a program in C++ to print a pattern of right angle triangle with a number that will repeat a number in the row by using the constructor and destructor.

C++ Program to print a pattern of the right-angle triangle using Constructor
#include<iostream>
using namespace std;
class T4Tutorials
{
protected :
int i,j,n,r;
public :
T4Tutorials()
{
cout<<"Enter no of rows : ";
cin>>n;
for(i=1 ; i<=n ; i++)
{
for(j=1 ; j<=i ; j++)
{
cout<<i;
}
cout<<endl;
}
}
};
int main()
{
T4Tutorials a;
}
Output

C++ Program to print a pattern of the right-angle triangle using Destructor
#include<iostream>
using namespace std;
class T4Tutorials
{
protected :
int i,j,n,r;
public :
~T4Tutorials()
{
cout<<"Enter no of rows : ";
cin>>n;
for(i=1 ; i<=n ; i++)
{
for(j=1 ; j<=i ; j++)
{
cout<<i;
}
cout<<endl;
}
}
};
int main()
{
T4Tutorials a;
}