diff --git a/ege/ege4.cpp b/ege/ege4.cpp new file mode 100644 index 0000000..ffd9cea --- /dev/null +++ b/ege/ege4.cpp @@ -0,0 +1,14 @@ +#include +#include +int main(){ + initgraph(400,300); + setcolor(GREEN); + line(0,100,370,350); + setfillcolor(EGERGB(0xff,0x00,0x80)); + bar(30,0,70,20); + setcolor(RED); + arc(40,70,0,124,13); + getch(); + closegraph(); + return 0; +}