C++表白代码—一颗心
运行结果:
代码:
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
float x, y;
for (y = 1.5f; y >-1.5f; y -= 0.1f)
{
for (x = -1.5f; x <1.5f; x += 0.05f)
{
float a = x*x + y*y - 1;
if ((a*a*a- x*x*y*y*y)<=0) cout<<"^";//心形方程
else cout<<" ";
}
cout<<endl;
}
cout<<" 爱你呦";
return 0;
}
因为有太多的宝子们说运行不了了,应该是软件兼容性和配置的问题,大家可以在开源编译器菜鸟试一试:
附上我运行的图片和地址:https://www.runoob.com/try/runcode.php?filename=helloworld&type=cpp
绝无虚假哦~
快去表白吧