EasyX图形库---第一天

小球右移简单动画,基本思想---绘制新图,延时,清除旧图

#include
#include
int main()
{
 initgraph(640, 480);
 for (int x = 100; x < 540; x += 20)
 {
  setcolor(YELLOW);
  setfillcolor(GREEN);
  fillcircle(x, 100, 20);
  Sleep(2000);
  setcolor(BLACK);
  setfillcolor(BLACK);
  fillcircle(x, 100, 20);
 }
 closegraph();
 return 0;
}

 

你可能感兴趣的:(C)