1,求教大神 这个C程序爱心代码先用 txt文档 打出一个类似的 然后 一行一行的直接 printf出来就好了 没什么规律
2,怎么用C语言输出一个闪烁的心形这是你的输出呀,并没什么错误 。。这个我做过,不过是用led弄得,用单片机使其闪烁循环
3,谁知道一款心形的漂浮物代码爱心草彩色版正飘代码:javascript:window.top.space_addItem(5,609,0,0,7,1,0);反飘代码:javascript:window.top.space_addItem(5,609,0,1,7,1,0);爱心草绿色版正飘代码:javascript:window.top.space_addItem(5,609,0,0,0,1,0);反飘代码:javascript:window.top.space_addItem(5,609,0,1,0,1,0);====这四款都是的【c语言满屏飘红色爱心代码,求教大神 这个C程序爱心代码】
4,求一个c语言程序能输出一个大的爱心用符号拼成的不能用printf#includeint n; void draw(int n) { int i,j; for (i=1-(n>>1);i<=n;i++) if (i>=0) { for (j=0;jfor (j=1;j<=2*(n-i)+1;j++) putchar(" *"); putchar("\n"); } else { for (j=i;j<0;j++)putchar(" "); for (j=1;j<=n+2*i+1;j++)putchar(" *"); for (j=1;j<=-1-2*i;j++) putchar(" "); for (j=1;j<=n+2*i+1;j++) putchar(" *"); putchar("\n"); } } int main() { printf("Please input the size (n>=4):"); scanf("%d",&n); draw(n); return 0; } 空心的: #include int n; void draw(int n) { int i,j; for (i=1-(n>>1);i<=n;i++) if (i>0) { for (j=0;jfor (j=1;j<=2*(n-i)+1;j++) if (j==1||j==2*(n-i)+1)putchar(" *"); else putchar(" "); putchar("\n"); } else if (i==0) { putchar(" *"); for (j=1;jputchar(" *"); for (j=1;jputchar(" *\n"); } else { for (j=i;j<0;j++) putchar(" "); for (j=1;j<=n+2*i+1;j++) if (i==1-(n>>1))putchar(" *"); else if (j==1||j==n+2*i+1) putchar(" *"); else putchar(" "); for (j=1;j<=-1-2*i;j++) putchar(" "); for (j=1;j<=n+2*i+1;j++) if (i==1-(n>>1)) putchar(" *"); else if (j==1||j==n+2*i+1) putchar(" *"); else putchar(" "); putchar("\n"); } } int main() { printf("Please input the size (n>=4):"); scanf("%d",&n); draw(n); return 0; }网上有答案 。个人认为还行,7以上效果较好,不知道你要空心的还是实心的,都附上吧(百度知道好像把两个空格的位置上传后变成了一个空格,你自己要改一下,输出位置为一个空格的全部改成两个,其他的不用改):实心的:#includeint n; void draw(int n) { int i,j; for (i=1-(n>>1);i<=n;i++) if (i>=0) { for (j=0;jfor (j=1;j<=2*(n-i)+1;j++) printf(" *"); printf("\n"); } else { for (j=i;j<0;j++) printf(" "); for (j=1;j<=n+2*i+1;j++) printf(" *"); for (j=1;j<=-1-2*i;j++) printf(" "); for (j=1;j<=n+2*i+1;j++) printf(" *"); printf("\n"); } } int main() { printf("Please input the size (n>=4):"); scanf("%d",&n); draw(n); return 0; } 空心的: #include int n; void draw(int n) { int i,j; for (i=1-(n>>1);i<=n;i++) if (i>0) { for (j=0;jfor (j=1;j<=2*(n-i)+1;j++) if (j==1||j==2*(n-i)+1) printf(" *"); else printf(" "); printf("\n"); } else if (i==0) { printf(" *"); for (j=1;jprintf(" *"); for (j=1;jprintf(" *\n"); } else { for (j=i;j<0;j++) printf(" "); for (j=1;j<=n+2*i+1;j++) if (i==1-(n>>1)) printf(" *"); else if (j==1||j==n+2*i+1) printf(" *"); else printf(" "); for (j=1;j<=-1-2*i;j++) printf(" "); for (j=1;j<=n+2* i+1;j++) if (i==1-(n>>1)) printf(" *"); else if (j==1||j==n+2*i+1) printf(" *"); else printf(" "); printf("\n"); } } int main() { printf("Please input the size (n>=4):"); scanf("%d",&n); draw(n); return 0; }符号拼成的不也是printf吗是不是用来向女友示爱的啊5,C语言编程能不能编个显示是I LOVE YOU的图案啊高手帮帮忙是什么样的图案啊 , 能不能具体一点,是打出这行字还是其他的什么是再控制台模式下?来自牛人贴 。不错的程序 , 心字符图案,中间加上 I love you!#include<stdio.h> #include<math.h> #include<stdlib.h>#define I 20//爱心的上半部分两个小半圆的半径#define R 340//爱心的下半部分圆弧曲线半径int main()int i,j,e;int a; //爱心的上半部分 为两个实心半圆for(i=1,a=I;i<I/2;i++,a--)for(j=(int) (I-sqrt((double)(I*I-(a-i)*(a-i))));j>0;j--)printf(" ");for(e=1;e<=2*sqrt((double)(I*I-(a-i)*(a-i)));e++)printf("\3");for(j=(int) (2*( I-sqrt((double)(I*I-(a-i)*(a-i))) ));j>0;j--)printf(" ");for(e=1;e<=2*sqrt( (double) (I*I-(a-i)*(a-i)) );e++)printf("\3");printf("\n");} //爱心的中间一行 可以打印一些标记for(i=1;i<80;i++)if(i==25)printf("I LOVE YOU!O(∩_∩)O~");i+=30;}printf("\3");}printf("\n"); //爱心的下半部分 以R为半径的左右两条圆弧曲线 R设置为比较大for(i=1;i<=R/2;i++)if(i%2||i%3)continue;//因为R很大 两条曲线应该删去中间的一些点 这样就会更像爱心for(j=(int) (R-sqrt( (double) (R*R-i*i) ));j>0;j--)printf(" ");for(e=1;e<=2*( sqrt( (double)(R*R-i*i) ) - (R-2*I) );e++)printf("\3");printf("\n");} //以下是以time做时间变量来控制变色//懒得查时间变量函数 故用这种超耗cpu的算法代替//最好不要这么写 以下代码仅供娱乐long time; for(; ;)system("color a");for(time=0;time<99999999;time++);system("color b");for(time=0;time<99999999;time++);system("color c");for(time=0;time<99999999;time++);system("color d");for(time=0;time<99999999;time++);system("color e");for(time=0;time<99999999;time++);system("color f");for(time=0;time<99999999;time++);system("color 0");for(time=0;time<99999999;time++);system("color 1");for(time=0;time<99999999;time++);system("color 2");for(time=0;time<99999999;time++);system("color 3");for(time=0;time<99999999;time++);system("color 4");for(time=0;time<99999999;time++);system("color 5");for(time=0;time<99999999;time++);system("color 6");for(time=0;time<99999999;time++);system("color 7");for(time=0;time<99999999;time++);system("color 8");for(time=0;time<99999999;time++);system("color 9");for(time=0;time<99999999;time++);system("color ab");for(time=0;time<99999999;time++);system("color ac");for(time=0;time<99999999;time++);system("color ad");for(time=0;time<99999999;time++);system("color ae");for(time=0;time<99999999;time++);system("color af");for(time=0;time<99999999;time++);}return 0;}
推荐阅读
- 安卓App下载安装时间窗,安卓软件排行 安卓软件下载网
- java爱心代码编程加名字,爱心留言代码
- 程序员开发软件常用背景RGU,如何将matlab的背景设置为程序员常用的
- ios怎么运行apk软件,苹果手机怎么打开apk文件
- 航天模拟器最新版本下载,TVAnts最新版本下载
- 分秒帧
- android手机应用程序开发,安卓软件开发必备知识有哪些
- idea生成有参构造的快捷键,myEclipse 查看构造方法参数快捷键
- 苹果手机如何把音乐设置为铃声,苹果手机怎么设置铃声自己设置歌曲