摘要: #include <graphics.h> #include <conio.h> int main(){ initgraph(1048,648); setfillcolor(GREEN); fillcircle(500,200,100); solidcircle(500,450,100); _get 阅读全文
posted @ 2025-04-11 19:42 王一行(小号) 阅读(8) 评论(0) 推荐(0)
摘要: #include <graphics.h> #include <conio.h> int main(){ initgraph(640, 480); circle(200, 200, 100); _getch(); closegraph(); return 0; } 阅读全文
posted @ 2025-04-11 19:34 王一行(小号) 阅读(8) 评论(0) 推荐(0)