JINGLING.CPP
资源名称:C++100.rar [点击查看]
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:0k
源码类别:
Windows编程
开发平台:
Visual C++
- #include<graphics.h>
- #include<conio.h>
- void main()
- {
- int driver=DETECT,mode;
- registerbgidriver(EGAVGA_driver);
- initgraph(&driver,&mode,"");
- setcolor(LIGHTGRAY);
- setfillstyle(1,YELLOW);
- for(int NUM=0;NUM<7;NUM++)
- pieslice(200,200+NUM,-45,45,70);
- setcolor(LIGHTGRAY);
- for(NUM=0;NUM<7;NUM++)
- {
- circle(190,170+NUM,15);
- setfillstyle(1,0);
- floodfill(190,170,LIGHTGRAY);
- }
- getch();
- closegraph();
- }