題目:畫橢圓ellipse(在TC中實現)。html
程序分析:無。學習
程序源代碼:spa
1 #include "stdio.h" 2 #include "graphics.h" 3 #include "conio.h" 4 int main() 5 { 6 int x=360,y=160,driver=VGA,mode=VGAHI; 7 int num=20,i; 8 int top,bottom; 9 initgraph(&driver,&mode,""); 10 top=y-30; 11 bottom=y-30; 12 for(i=0;i<num;i++) 13 { 14 ellipse(250,250,0,360,top,bottom); 15 top-=5; 16 bottom+=5; 17 } 18 getch(); 19 }
感謝你的閱讀,請用心感悟!但願能夠幫到愛學習的你!!分享也是一種快樂!!!請接力。。。code
點擊查看原文,謝謝!htm