Cpp代码如下:
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main() {
float a, x, y;
system("cls");
system("color 0C");
for(y = 1.5; y >-1.5; y -= 0.1) {
for(x = -1.5; x < 1.5; x += 0.05) {
a = x * x + y * y - 1;
if ((pow(a, 3.0) - pow(x, 2.0) * pow(y, 3.0)) <= 0.0)
printf("*");
else
printf(" ");
}
printf("\n");
}
system("pause");
exit(0);
}
编译后,把文件发给女朋友,她打开后,将会看到:
浪漫不浪漫呢?哈哈~