溫馨提示×

怎么用c語言畫一朵小紅花

小億
221
2023-11-01 16:02:15
欄目: 編程語言

要用C語言畫一朵小紅花,可以使用圖形庫如graphics.h來實現(xiàn)。以下是一個簡單的示例代碼:

#include <stdio.h>
#include <stdlib.h>
#include <graphics.h>

int main() {
   int gd = DETECT, gm;
   initgraph(&gd, &gm, "");

   // 畫紅花瓣
   setcolor(RED);
   setfillstyle(SOLID_FILL, RED);
   circle(300, 300, 50);
   floodfill(300, 300, RED);

   // 畫綠花蕊
   setcolor(GREEN);
   setfillstyle(SOLID_FILL, GREEN);
   circle(300, 280, 20);
   floodfill(300, 280, GREEN);

   // 畫黃花蕊
   setcolor(YELLOW);
   setfillstyle(SOLID_FILL, YELLOW);
   circle(290, 270, 10);
   floodfill(290, 270, YELLOW);

   // 畫花莖
   setcolor(GREEN);
   line(300, 300, 300, 400);

   getch();
   closegraph();
   return 0;
}

運行以上代碼,將會在圖形窗口中繪制一朵小紅花。

0