void draw(int x, int y) /*自定义函数draw画出火箭外形*/ { setcolor(14); setfillstyle(1, 15); rectangle(x, y, x + 30, y + 60); floodfill(x + 10, y + 10, 14); setfillstyle(1, RED); line(x + 15, y - 15, x, y); line(x + 15, y - 15, x + 30, y); floodfil...