Single Inheritance Rhombus star pattern C++ Program
Rhombus star pattern using Single Inheritance
Write a C++ program to print the rhombus star pattern of N rows using Single Inheritance. How to print rhombus or parallelogram star pattern with the help of for loop in C++ using Single Inheritance.
What is the Logic to print parallelogram or rhombus star pattern series in C++ using Single Inheritance?
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 | #include<iostream> using namespace std; class T4Tutorials_Parent { protected: int i,j,k,n; }; class T4Tutorials_Child:public T4Tutorials_Parent { public: int show() { cout<<"num of rows:"; cin>>n; for(i=1;i<=n;i++) { for(j= 1;j<=n-i;j++) { cout<<" "; } for(k=1;k<=n;k++) { cout<<"*"; } cout<<endl; } } }; int main() { T4Tutorials_Child obj; obj.show(); } |
Output