Example of including a class with C++ main program
C++ program to print a hollow square or rectangle star pattern by using the class with C++ main program.
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 a { protected: int n,i,j; public: int out() { cout<<"enter number"; cin>>n; for(i=1;i<=n;i++) { for( j=1;j<=n;j++) { if(i==1||i==n||j==1||j==n) { cout<<"*"; } else { cout<<" "; } } cout<<endl; } } }; int main() { a c; c.out(); } |
