Start by printing a block of x's:
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 15; j++) {
cout.put('x');
}
cout.put('\n');
}
From there you can play around with ideas on how to identify the corner blocks and instead of printing an x, print a space. The real benefit of this exercise is that part, so I don't want to reveal too much as that would defeat the purpose.