C++表白代码---一颗心

C++表白代码—一颗心

运行结果:
C++表白代码---一颗心_第1张图片
代码:

#include
#include

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
绝无虚假哦~
快去表白吧

C++表白代码---一颗心_第2张图片

C++表白代码–Beating heart(跳动的心)

你可能感兴趣的:(游戏,c++)