码迷,mamicode.com
首页 > 编程语言 > 详细

【C语言】用"I love you!"打印心形

时间:2020-03-11 12:43:41      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:main   c语言   clu   mic   names   for   turn   string   length   

#include<iostream>
#include<cmath>
using namespace std;
int main()
{

    float x, y;
    string s = "I love you!";
    int l = s.length();
    for (y = 1.3f; y >= -1.1f; y -= 0.06f)
    {
        int t = 0;
        for (x = -1.1f; x <= 1.1f; x += 0.025f)
        {
            double heart = x * x + (5.0 * y / 4.0 - sqrt(abs(x))) * (5.0 * y / 4.0 - sqrt(abs(x)));
            if (heart <= 1) {
                cout << s[t];
                t = (t + 1) % l;
            }
            else cout << " ";
        }
        cout << endl;
    }
    return 0;
}

技术图片

 

【C语言】用"I love you!"打印心形

标签:main   c语言   clu   mic   names   for   turn   string   length   

原文地址:https://www.cnblogs.com/HGNET/p/12461505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!