//运用递归的方法,类似与数列的递推 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #define MAX_SIZE 1024 char canvas[MAX_SIZE][MAX_SIZE * 2]; // 递归绘制圣诞树 void draw(int x, int y, int size, int level) { //以顶点绘制最小单元 * // * * // * * * x...