#include <stdio.h>
int main() {
printf("\n\n绘制一个心形图案:");
for (float y = 1.5f; y > -1.5f; y -= 0.1f) {
for (float x = -1.5f; x < 1.5f; x += 0.05f) {
float a = x * x + y * y - 1;
putchar(a * a * a - x * x * y * y * y <= 0.0f ? '*' : ' ');
}
......................
阅读全部 | 2023年3月18日 22:03