前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >(c,c++,java)爱心代码(狗粮)

(c,c++,java)爱心代码(狗粮)

作者头像
全栈程序员站长
发布2022-11-04 16:20:02
2.4K1
发布2022-11-04 16:20:02
举报
文章被收录于专栏:全栈程序员必看

大家好,又见面了,我是你们的朋友全栈君。

今天(2019/8/7)是七夕,撒一波狗粮!

有些人对计算机类的学生和程序员们有一点的误解,这是不对的。其实当他们浪漫起来的时候就没有其他人什么事了哈哈

c款狗粮:

代码语言:javascript
复制
#include <stdio.h>
#include <math.h>
int main()
{ 

printf("\n");
printf("\n");
printf("\n");
printf("\n");
printf(" jhz,I love you!!!");
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;
}

(这个代码想起了她,AI_zhen )

在这里插入图片描述
在这里插入图片描述

c++款狗粮:

代码语言:javascript
复制
#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;
}
return 0;
}
在这里插入图片描述
在这里插入图片描述

java款狗粮:

代码语言:javascript
复制
public class Java_love { 

public static void main(String args[]) { 

int n = 4;
int i, j, m;
for (i = 1; i <= n; i++) { 

for (j = 1; j <= 2 * (n - i) - 1; j++) { 

System.out.print(" ");
}
for (j = 1; j <= 6 + (10 - i) * (i - 1) / 2; j++) { 

System.out.print("*");
}
for (j = 1; j <= 2 * n - 1 + (i - 6) * (i - 1); j++) { 

if (i == n)
break;
System.out.print(" ");
}
for (j = 1; j <= 6 + (10 - i) * (i - 1) / 2; j++) { 

if (i == n)
break;
System.out.print("*");
}
if (i == n) { 

for (j = 1; j <= 6 + (10 - i) * (i - 1) / 2 - 1; j++) { 

System.out.print("*");
}
}
System.out.println("");
} // 上面部分
for (i = 1; i <= n - 2; i++) { 

for (j = 1; j <= 6 + (10 - n) * (n - 1) / 2 - 1 + 6 + (10 - n) * (n - 1) / 2; j++) { 

System.out.print("*");
}
System.out.println("");
} // 中间部分
m = 6 + (10 - n) * (n - 1) / 2 + 6 + (10 - n) * (n - 1) / 2 - 1;
for (i = 1; i <= (m - 2 - 3) / 4 + 1; i++) { 

for (j = 1; j <= 2 * i - 1; j++) { 

System.out.print(" ");
}
for (j = 1; j <= m + 2 - 4 * i; j++) { 

System.out.print("*");
}
System.out.println("");
}
for (j = 1; j <= 2 * ((m - 2 - 3) / 4 + 1); j++)
{ 

System.out.print(" ");
}
System.out.print("*");// 下面部分
}
}
在这里插入图片描述
在这里插入图片描述

Only by working hard and making yourself excellent can you bring happiness to those you like. —–我说的

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/182502.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022年10月13日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档