测试代码高亮显示

Home Links
#include "stdio.h"
#include "graphics.h"
#include "conio.h"
main()
{

  //注释行
  /*注释段落*/
  int x=360,y=160,driver=VGA,mode=VGAHI;
  int num=20,i;
  int top,bottom;
  initgraph(&driver,&mode,"");
  top=y-30;
  bottom=y-30;
  for(i=0;i<num;i++)
  {
    ellipse(250,250,0,360,top,bottom);
    top-=5;
    bottom+=5;
  }
  getch();
}
日志编译时间: 2016-06-04 09:48:00 UTC
日志固定链接: /2016-06-04-code.html
zhaohao /
Published in categories weblog  tagged with

◄上一篇[←/K]   [J/→]下一篇►