SHAN.CPP
资源名称:C++100.rar [点击查看]
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- #include<graphics.h>
- #include<conio.h>
- void main(void)
- {
- int driver=DETECT,mode;
- registerbgidriver(EGAVGA_driver);
- initgraph(&driver,&mode,"");
- setcolor(YELLOW);
- circle(100,100,50);
- setcolor(LIGHTCYAN);
- outtextxy(300,100,"* * * CIRCLE * * *");
- setcolor(13);
- outtextxy(300,150,"TO see the FAN SHAPED,Press Any Key... ...");
- getch();
- setcolor(LIGHTCYAN);
- setfillstyle(3,YELLOW);
- pieslice(100,350,45,135,100);
- outtextxy(300,300,"* * * SECTOR (FAN SHAPED) * * *");
- setcolor(13);
- outtextxy(300,350,"TO EXIT,Press Any Key... ...");
- getch();
- closegraph();
- }