24.画心问题
在UMG中绘制出心的形状
提示:心型函数
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double x, y;
for (y = 1.5; y > -1.5; y -= 0.1) {
for (x = -1.5; x < 1.5; x += 0.05) {
double a = x * x + y * y - 1;
cout << ((a * a * a - x * x * y * y * y <= 0.0) ? "*" : " ");
}
cout << endl;
}
return 0;
}