# 哆啦A梦 **Repository Path**: weixingcheng/DuoLaAMeng ## Basic Information - **Project Name**: 哆啦A梦 - **Description**: No description available - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-11-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 哆啦A梦 ``` #include #include #define width 640 #define height 480 #define PI 3.14159265 void main() { initgraph(width,height); setorigin(320,240); setbkcolor(WHITE); cleardevice(); setfillcolor(LIGHTBLUE); setlinecolor(BLACK); fillroundrect(-135, -206, 135, 54, 248, 248); setfillcolor(WHITE); fillellipse(-115, -144, 115, 46); fillroundrect(-63, -169, 0, -95, 60, 60); fillroundrect(0, -169, 63, -95, 60, 60); setfillcolor(BLACK); solidcircle(-15, -120, 10); solidcircle( 15, -120, 10); setfillcolor(WHITE); solidcircle(-15,-120,5); solidcircle( 15,-120,5); setfillcolor(LIGHTRED); fillcircle(0, -92, 15); setfillcolor(WHITE); fillcircle(-4, -100, 5); line(0, -77, 0, -10); arc(-100, -220, 100, -10, PI * 5 / 4, PI * 7 / 4); line(-45, -75, -90, -90); line( 45, -75, 90, -90); line(-40, -65, -92, -65); line( 40, -65, 92, -65); line(-45, -57, -90, -40); line( 45, -57, 90, -40); line(-81, 32, -138, 72); line( 81, 32, 138, 72); line(-96, 96, -116, 110); line( 96, 96, 116, 110); line(-96, 85, -96, 178); line( 96, 85, 96, 178); arc(-10, 168, 10, 188, 0, PI); setfillcolor(WHITE); fillcircle(-140, 99, 27); fillcircle( 140, 99, 27); fillroundrect(-2, 178, -112, 205, 30, 30); fillroundrect( 2, 178, 112, 205, 30, 30); setfillcolor(LIGHTBLUE); floodfill(0, 100, BLACK); setfillcolor(WHITE); fillcircle(0, 81, 75); solidrectangle(-60, 4, 60, 24); pie(-58, 23, 58, 139, PI, 0); setfillcolor(LIGHTRED); fillroundrect(-100, 23, 100, 42, 12, 12); setfillcolor(YELLOW); fillcircle(0, 49, 25); setfillcolor(BROWN); solidellipse(-5, 50, 5, 57); setlinestyle(PS_SOLID, 3); line(0, 57, 0, 72); setlinestyle(PS_SOLID, 2); line(-20, 38, 20, 38); line(-23, 44, 23, 44); _getch(); } ```