当前位置 : 主页 > 编程语言 > c语言 >

C语言的浪漫

来源:互联网 收集:自由互联 发布时间:2023-09-06
宝,过七夕了 环境:对象、centos7vim/vi编辑器写C语言刚刚逛街遇到一个美丽的爱心,然后就想起了你们。 源代码 #include stdio.h#include math.h#include stdio.hint main(){ float y, x, z, f; for (y = 1.5f;


宝,过七夕了

环境:对象、centos7vim/vi编辑器写C语言刚刚逛街遇到一个美丽的爱心,然后就想起了你们。

C语言的浪漫_c语言


源代码

#include <stdio.h>
#include <math.h>
#include <stdio.h>

int main()
{
    float y, x, z, f;
    for (y = 1.5f; y > -1.5f; y-=0.1f)
    {
        for (x = -1.5f; x < 1.5f; x += 0.05f)
        {
            z = x*x + y*y -1;
            f = z*z*z - x*x*y*y*y;
            putchar(f <= 0.0f ? "**-*-*-*"[(int)(f*-8.0f)]:' ');
        }
        putchar('\n');
    }

    getchar();
    return 0;
}

我也刚刚学C,就不跟你们解释代码了哈哈哈。

PS:祝有钱人终成眷属

C语言的浪漫_vim_02

【感谢龙石为本站提供信息共享平台 http://www.longshidata.com/pages/exchange.html】
网友评论