编写C语言代码: 下面是一个C语言代码示例,它使用嵌套循环来绘制一个立体的爱心图案,并在图案下方添加表白信息。 c #include <stdio.h> #include <math.h> int main() { int i, j, k; int width = 40; // 爱心的宽度 int height = 20; // 爱心的高度 char heart[height][width];...