#include "stdafx.h"
#include
#include
int main()
{
initgraph(300, 300); //图形方式初始化
ellipse(200, 200, 100, 50); //以(200,200)为中心的椭圆
_getch(); //按任意键继续
closegraph(); //退出图形状态
return 0;
}
前两个参数为左上角的坐标
后两个参数为右下角的坐标