Тема: зробити рух прапору на сі
допоможіть дописати програму
я створив прямокутник так коло в ньому , потрібно зробити рух вниз вверх , але не лиш контура а і заливки
шось типу як на кораблі піднімають прапор )))
#include <math.h>
#include<stdlib.h>
#include<stdio.h>
#include<conio.h>
#include<iostream.h>
#include<graphics.h>
#include<dos.h>
void main()
{ clrscr();
int gdriver=DETECT,gmode, errorcode;
initgraph(&gdriver,&gmode,"");
errorcode=graphresult();
if (errorcode!=grOk)
{ cout<<"error"<<grapherrormsg(errorcode);
cout<<"\n enter key";
getch();
exit(1);
}
setbkcolor(BLACK);
setcolor(9);
line(100,500,100,1);
setcolor(WHITE);
rectangle(100,0,300,200);
setfillstyle(1,15);
floodfill(200,100,15);
int y=0,y1=200,sy=60;
//-------------------------------
setcolor(4);
circle(200,100,25);
setfillstyle(1,4);
floodfill(200,100,4);
//-------------------------------
setcolor(9);
line(100,500,100,1);
getch();
closegraph();
}