码迷,mamicode.com
首页 > 其他好文 > 详细

画一头猪

时间:2017-09-30 17:53:38      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:width   src   class   graphic   ice   lin   return   etc   png   

#if _MSC_VER>=1900  
#include "stdio.h"   
_ACRTIMP_ALT FILE* __cdecl __acrt_iob_func(unsigned);
#ifdef __cplusplus   
extern "C"
#endif   
FILE* __cdecl __iob_func(unsigned i) {
    return __acrt_iob_func(i);
}
#endif /* _MSC_VER>=1900 */  

#include<graphics.h>
#include<conio.h>

void main()
{
    int ear_left[6] = {170,184,240,101,160,80};
    int ear_right[6] = {470,184,400,101,480,80};
    initgraph(640, 480);
    setbkcolor(WHITE);
    cleardevice();

    setfillcolor(RGB(245, 212, 217));
    setlinecolor(BLACK);
    fillcircle(320, 240, 160);
    fillpolygon((POINT*)ear_left, 3);
    fillpolygon((POINT*)ear_right, 3);

    setfillcolor(RGB(249, 204, 226));
    fillroundrect(220, 240, 420, 360,160,120);

    setfillcolor(RGB(241, 158, 194));
    fillroundrect(260, 260, 300, 340, 80, 60);
    fillroundrect(380, 260, 340, 340, 80, 60);

    setfillcolor(BLACK);
    solidcircle(260, 200, 10);
    solidcircle(380, 200, 10);

    setfillcolor(RGB(242, 156, 177));
    solidcircle(200, 240, 15);
    solidcircle(440, 240, 15);
    _getch();
    closegraph();
}

技术分享

画一头猪

标签:width   src   class   graphic   ice   lin   return   etc   png   

原文地址:http://www.cnblogs.com/NDKY9/p/7615427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!