首页上一页 1 下一页尾页 1 条记录 1/1页
C语言程序开发范例宝典例224绘制五角星运行不成
发表在C语言图书答疑
2017-07-27
是否精华
是
否
版块置顶:
是
否
#include<stdio.h>
#include<graphics.h>
#include<math.h>
main()
{
int i,j=0,gdriver,gmode,points[20];
gdriver=DETECT;
initgraph(&gdriver,&gmode,"");
setcolor(YELLOW);
setlinestyle(0,0,1);
for(i=0;i<5;i++)
{
points[j++]=(int)(320+150*cos(0.4*3.1415926*i));
points[j++]=(int)(240-150*sin(0.4*3.1415926*i));
points[j++]=(int)(320+50*cos(0.4*3.1415926*i+0.6283));
points[j++]=(int)(240-50*sin(0.4*3.1415926*i+0.6283));
}
setfillstyle(1,RED);
fillpoly(10,points);
getch();
closegraph();
}