Дамп всех задач

This commit is contained in:
2017-05-22 13:29:43 +03:00
parent b970626fef
commit 93746b05d7
173 changed files with 2505 additions and 0 deletions

12
C++/v6oid/krugi/mygraph.h Normal file
View File

@@ -0,0 +1,12 @@
#include <graphics.h>
#include <conio.h>
#include <stdlib.h>
void krugi ( int x, int y, int r, int c) {
for(int i=r; i>6; i=i-5) {
y=y+5;
circle (x,y,i);
setfillstyle(1, c);
floodfill(x,y,15);
}
}