FILL.CPP
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*-------------------------------GRAPH---------------------------------*/
  2. /*     NAME:ALL FILL TYPES  */
  3. /*-------------------------------GRAPH---------------------------------*/
  4. #include<graphics.h>
  5. #include<dos.h>
  6. #include<conio.h>
  7. void main()
  8. {
  9. int driver=DETECT,mode;
  10. int X1=20,Y1=20,R=10,NUM;
  11. int X2=20,Y2=450;
  12. int COLOR1=11,COLOR2=12;
  13. registerbgidriver(EGAVGA_driver);
  14. initgraph(&driver,&mode,"");
  15. setcolor(COLOR1);
  16. for(NUM=0;NUM<30;NUM++)
  17. {
  18. circle(X1,Y1,R);
  19. setfillstyle(NUM%12,COLOR1);
  20. floodfill(X1,Y1,COLOR1);
  21. X1+=20;
  22. delay(100);
  23. }
  24. setcolor(COLOR2);
  25. for(NUM=0;NUM<30;NUM++)
  26. {
  27. circle(X2,Y2,R);
  28. setfillstyle(NUM%12,COLOR2);
  29. floodfill(X2,Y2,COLOR2);
  30. X2+=20;
  31. delay(100);
  32. }
  33. setcolor(YELLOW);
  34. outtextxy(200,250,"Wish you have a good time ! ");
  35. setcolor(BLUE);
  36. line(200,260,420,260);
  37. getch();
  38. closegraph();
  39. }