EJEMPLO CUADRADO

REALIZA UN CUADRADO

#include

#include
#include
main()
{
int A, B;
clrscr();
for(A=10; A<50; A++)
{
for(B=10; B<30; B++)
{
textcolor(14);
gotoxy(A,B); cprintf("Û");
}
}
getch();
return 0;
}