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

4 篇文章 0 订阅
3 篇文章 0 订阅

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

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

c款狗粮:

#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++款狗粮:

#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款狗粮:


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.
-----我说的

  • 149
    点赞
  • 712
    收藏
    觉得还不错? 一键收藏
  • 63
    评论
抱歉,C语言不适合用来写动态页面的代码。动态页面通常使用JavaScript等前端语言编写。如果您需要一个动态爱心页面的代码,可以参考以下JavaScript代码: ```html <!DOCTYPE html> <html> <head> <title>动态爱心</title> <style type="text/css"> #container { position: relative; width: 400px; height: 400px; margin: 0 auto; } #heart { position: absolute; top: 50%; left: 50%; width: 100px; height: 90px; transform: translate(-50%, -50%); background-color: pink; border-radius: 50px 50px 0 0; animation: heartbeat 1s linear infinite; } #heart:before, #heart:after { position: absolute; content: ""; left: 50px; top: 0; width: 50px; height: 80px; background-color: pink; border-radius: 50px 50px 0 0; transform: rotate(-45deg); } #heart:after { left: 0; transform: rotate(45deg); } @keyframes heartbeat { 0% { transform: scale(0.8); } 20% { transform: scale(1); } 40% { transform: scale(0.8); } 60% { transform: scale(1); } 80% { transform: scale(0.8); } 100% { transform: scale(0.8); } } </style> </head> <body> <div id="container"> <div id="heart"></div> <h1 id="name"></h1> </div> <script type="text/javascript"> var name = prompt("请输入名字:"); document.getElementById("name").innerHTML = name + ",我爱你!"; </script> </body> </html> ``` 这段代码利用CSS和JavaScript实现一个动态的爱心效果,并且可以在页面上显示输入的名字。您可以把代码复制到一个HTML文件中打开,然后在弹出的提示框中输入名字,即可看到效果。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 63
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值