#include #include using namespace std; // Ascii value for a box. // Globally accessible anywhere in my program. char box=219; void draw_box(int width, int height); void draw_box(int width, int height){ // Draw the lines in the box. for(int k=1;k<=height;k++){ // Draws one line in the box. for(int i=1;i<=width;i++) cout << box; cout << endl; } } int main() { draw_box(10,5); cout << endl; draw_box(3,6); int i; trychange(i); }