赞
踩
#include <stdio.h>
#include <stdlib.h>
void I_hope(char heart)
{
float x,y,a;
for(y = 1.5f; y>-1.5f; y-=0.1f)
{
for(x=-1.5f; x<1.5f; x+=0.05f)
{
a = x*x+y*y-1;
putchar (a*a*a-x*x*y*y*y <= 0.0f ? heart : ' ');
}
putchar('\n');
}
}
int main()
{
char *me;
me = "u";
I_hope(*me);
return 0;
}
![](https://csdnimg.cn/release/blogv2/dist/pc/img/newCodeMoreWhite.png)
//一开始,我只是一个野指针,直到遇见你,我知道我有了归属,我希望,你可以看到,我的心里全是你。
还找到了一个好玩的表白静态网页 ,我配过一次,效果挺好的。地址在下面~
https://github.com/FlyuZ/love-html.git
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。