Multiple inheritances C++ program to display pattern like the right angle
Write a program in C++ to make such a pattern like the right angle triangle with a number that will repeat a number in a row using the multiple inheritances in object-oriented programming.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
#include<iostream> using namespace std; class T4Tutorials_first { protected : int i; }; class T4Tutorials_second { protected : int j; }; class T4Tutorials_third : public T4Tutorials_first,public T4Tutorials_second { protected : int n,r; public : int pat() { 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_third a; a.pat(); } |