C语言--实训编程源代码-心形

2022-07-13 20:17:13   文档大全网     [ 字体: ] [ 阅读: ]

#文档大全网# 导语】以下是®文档大全网的小编为您整理的《C语言--实训编程源代码-心形》,欢迎阅读!
心形,源代码,语言,编程
源代码如下: #include #include #include int main() {

float x,y,z,f;

system("title 源世界.dracula出品"); 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; }


本文来源:https://www.wddqxz.cn/d5a6f1e3326c1eb91a37f111f18583d048640f27.html