testing-repository/ege/ege4.cpp

15 lines
259 B
C++
Raw Normal View History

2020-09-16 08:47:28 +08:00
#include<graphics.h>
#include<stdio.h>
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;
}