目录
第一种心形
加点好玩的
最后一忠心形(会变色的爱心)
618多得图书活动来啦
第一种心形
这次需要用到头文件#include<windows.h>
#include<stdio.h>
#include<windows.h>
以下是完整代码
#include<stdio.h>
#include<windows.h>
int main()
{
double x, y, a;
for (y = 1.5; y > -1.5; y -= 0.1)
{
for (x = -1.5; x < 1.5; x += 0.05)
{
a = x * x + y * y - 1;
if (a * a * a - x * x * y * y * y <= 0)
{
printf("+");
Sleep(1);
}
else
printf(" ");
}
printf("\n");
}
}
执行效果:
加点好玩的
#include<stdio.h>
#include<windows.h>
int main()
{
double x, y, a;
for (y = 1.5; y > -1.5; y -= 0.1)
{
for (x = -1.5; x < 1.5; x += 0.05)
{
a = x * x + y * y - 1;
if (a * a * a - x * x * y * y * y <= 0)
{
printf("+");
Sleep(1);
}
else
printf(" ");
}
printf("\n");
}
printf("爱情来的太快就像龙卷风,你把握不住的,让哥来\n----阿玥的小东东");
return 0;
}
执行结果:
最后一忠心形(会变色的爱心)
这次也是需要用到#include <windows.h>头文件
#include <windows.h>
#include <iostream>
以下是完整代码
#include <windows.h>
#include <iostream>
int main() {
HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE); // 获取Console控制台句柄
while (true) {
SetConsoleTextAttribute(hConsole, rand() % 15 + 1); // 设置控制台文字颜色(1~15为常见颜色编号)
std::cout << " ************* " << std::endl;
std::cout << " *** " << std::endl;
std::cout << " *** " << std::endl;
std::cout << " " << std::endl;
std::cout << "** **" << std::endl;
std::cout << "** **" << std::endl;
std::cout << " ** ** " << std::endl;
std::cout << " ** ** " << std::endl;
std::cout << " ** " << std::endl;
Sleep(500); // 延迟500毫秒
system("cls"); // 清空控制台
}
return 0;
}
这个我没有弄得太好看,大家可以自行调整
618多得图书活动来啦
618,清华社 IT BOOK 多得图书活动开始啦!活动时间为 2023 年 6 月 7 日至 6 月 18 日,清华 社为您精选多款高分好书,涵盖了 C++、Java、Python、前端、后端、数据库、算法与机器学习等多 个 IT 开发领域,适合不同层次的读者。全场 5 折,扫码领券更有优惠哦!快来京东点击链接(IT BOOK 多得) IT BOOK 多得(或扫描京东二维码)查看详情吧!