剛剛學(xué)C的新手們,你們的福利來(lái)了,教大家用VC6.0打印一個(gè)漂亮的心形~
效果圖:
源碼如下:
#include<stdio.h> #include<math.h> #include<windows.h> int main() { float x,y,z,f; system("title c語(yǔ)言研究中心 www.sztianhecheng.cn"); 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'); } printf("歡迎登錄c語(yǔ)言網(wǎng)學(xué)習(xí)交流www.sztianhecheng.cn"); getchar(); return 0; }
C語(yǔ)言研究中心(www.sztianhecheng.cn)