5
***** * * * * * * *****
void pattern_q9_hollow_square() {
int n = 5;
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= n; j++) {
if(i == 1 || i == n || j == 1 || j == n) {
cout << "* ";
} else {
cout << " ";
}
}
cout << endl;
}
}
void pattern_q9_hollow_square() {
int n = 5;
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= n; j++) {
if(i == 1 || i == n || j == 1 || j == n) {
cout << "* ";
} else {
cout << " ";
}
}
cout << endl;
}
}