资源简介 课件4张PPT。第七课 画同心圆一、圆的坐标画圆或者椭圆使用的操作:GraphicsWindow.DrawEllipse(a,b,width,height)其中,a是指椭圆的x坐标,b是指椭圆的y坐标,width是指椭圆的宽度,height是指椭圆的高度分别画出下面两图形GraphicsWindow.DrawEllipse(0,0,150,100)GraphicsWindow.DrawEllipse(0,0,150,150)画同心圆g=10d=200x=100y=100While d>1 GraphicsWindow.DrawEllipse(x,y,d,d) d=d-2*g x=x+g y=y+g EndWhile 展开更多...... 收起↑ 资源预览