C++爱心函数,可编辑文字

可设文字的心型实现——C++

  • 效果图
    • 根据需要修改对应参数
    • 参数描述
    • 所用心型函数
    • linux环境下g++编译运行

效果图

效果还是不错的,可以替换成npy的名字,快来尝试一下吧!

在这里插入图片描述

根据需要修改对应参数

话不多说上代码 代码片.

/*#############################
可根据需要修改长宽,可把outputfile替换成cout,

*/
#include<fstream>
#include<cmath>
#include<iterator>
#include<string>

#define width 120
#define leng 40

using namespace std;
	
int main(){
  const int size = 6;   //根据设置的字符进行设置
	const string dis_str[size] = {"I","L","o","v","e","U"};  //可改为自己想要的文字
	ofstream outputfile("love.txt"); 

	double x, y, sum;
	for( int i = 0; i < leng; i++ ){
		y = 1.5 - ( (3.0 * i) / leng) ;
		int k = 0;
		for( int j = 0; j < width; j++ ){             
			x =1.5 -  (( 3.0 * j) / width);
			sum = pow(( x * x + y * y - 1), 3) - pow(x,2) * pow(y,3);
			if( sum < 0.0 )
				outputfile << dis_str[(k++) % size];
			else
				outputfile << " ";
		}
		outputfile << "\n";
	}

	return 0;
}

参数描述

参数描述
dis_str[size]要展示的文字
sizedis_str[size]字符串数目
width宽度
leng长度
outputfile输出文件流,可替换成cout

所用心型函数

其中pow()代表指数函数

p o w ( ( x ∗ x + y ∗ y − 1 ) , 3 ) − p o w ( x , 2 ) ∗ p o w ( y , 3 ) = 0 pow(( x * x + y * y - 1), 3) - pow(x,2) * pow(y,3) = 0 pow((xx+yy1),3)pow(x,2)pow(y,3)=0

linux环境下g++编译运行

>> g++ love.cpp -o love.out
>> ./love.out
>> cat love.txt
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值