Buenas Aquí dejo un code limpio para novatos.
Código
#include <iostream> using namespace std; class Rectangulo { private: int x,y,w,h; public: Rectangulo(int _x, int _y,int _w ,int _h) : x(_x),y(_y),w(_w),h(_h){} void Ver(); }; void Rectangulo::Ver(){ for(int j=0;j<20;j++){ for(int i=0;i<60;i++){ if((i>=x && i<x+w) && (j>=y && j<y+h))cout << '#'; else cout << ' '; } cout << '\n' ; } }; int main(int *argc,char *argv[]){ Rectangulo *C =new Rectangulo(30,2,10,10); C->Ver(); delete C; return 0; };