#include using namespace std; int main() { char box=219; char box2='*'; for(int height=1;height<=6;height++) { cout << "\t\t"; for(int width=1;width<=10;width++) { if(height!=5) cout << box; else cout << box2; } cout << endl; } return 0; }