c语言表白代码我爱你加名字(用c语言编写我爱你的代码)
C语言中怎么弄输入一个人的名字然后输出我爱你?
#include stdio.h
#include string.h
int main()
{
char name[16];
int i;
printf("请输入一个你现在心里想的人的名字\n\n"); //可改,可删
gets(name);
if(strcmp(name,"张三")==0) //在这里修改名字
for(i=1;i=520;i++)
{
printf("第%3d次:",i); //不需要可以删掉
printf("我爱你1314\n"); /*本来这两句printf是可以写成一句的,为了方便你删除,所以把上面的那句提出去了*/
}
else
printf("\n你是sb\n");
return 0;
}
求用C编程编写一个用“我爱你”这3个字围成的心形,中间要空的,最好中间可以加两个人的名字!
#include "stdio.h"
void main()
{
printf(" 我 我\n 爱 爱 爱 爱\n 你 你 你 你\n");
printf(" 我 我 我\n爱 爱\n 你 你\n");
printf(" 我 我\n 爱 爱\n 你 你\n");
printf(" 我 我\n 爱 爱\n 你 你\n");
printf(" 我 我\n 爱 爱\n 你");
}
技术不过关,难看了。加名字靠你了。
求一个C语言表白程序
#include stdio.h
#include math.h
#include stdlib.h
#define I 20
#define R 340
#include string.h
int main()
{
char answer[10];
printf("遇到你\n我才发现\n曾经所有的条件\n似乎都成了我等你的借口\n\n");
printf("我对你的感情已经决堤\n所以\n请允许我,从今往后映入你\n明媚的眼\n");
printf("我\n想和你\n耳鬓厮磨,相濡以沫!");
printf("答应我吧!\n输入yes,你可以看到我的真心\n");
scanf("%s", answer);
float y, x, z, f;
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');
}
long time;
for (;;)
{
system("color a");
for (time = 0; time99999999; time++);
system("color b");
for (time = 0; time99999999; time++);
system("color c");
for (time = 0; time99999999; time++);
system("color d");
for (time = 0; time99999999; time++);
system("color e");
for (time = 0; time99999999; time++);
system("color f");
for (time = 0; time99999999; time++);
system("color 0");
for (time = 0; time99999999; time++);
system("color 1");
for (time = 0; time99999999; time++);
system("color 2");
for (time = 0; time99999999; time++);
system("color 3");
for (time = 0; time99999999; time++);
system("color 4");
for (time = 0; time99999999; time++);
system("color 5");
for (time = 0; time99999999; time++);
system("color 6");
for (time = 0; time99999999; time++);
system("color 7");
for (time = 0; time99999999; time++);
system("color 8");
for (time = 0; time99999999; time++);
system("color 9");
}
getchar();
return 0;
}
运行效果:
扩展资料:
printf函数使用注意事项
1、域宽
%d:按整型数据的实际长度输出。
如果想输出指定宽度可以指定域宽,%md-->m域宽,打印出来以后,在控制台上,显示m位;
如果我们要打印的数的位数如果超过我们设定m则原样输出;
如果我们要打印的数的位数如果小于我们设定的位数,则补空白,具体如下:
如果m为正数,则左对齐(左侧补空白);
如果m为负数,则右对齐(右侧补空白)。
2、转义字符
如果想输出字符"%",则应该在“格式控制”字符串中用连续两个%表示。
如:printf("%f%%",1.0/3);输出结果:0.333333%。
c语言表白程序代码
用C语言编写一个程序相信爱的人表白。
电脑:华为MateBook14
系统:Windows10
软件:VC++
1、正确打开VC++,设置适合自己的字体大小及你想说的话。
2、编写程序:
#include stdio.hvoid main(){printf("*********************\n");printf("我是发自内心的爱你\n");printf("*********************\n");}。
3、点击“编译”,“连接”,“运行”,检验程序是否正确。
在C语言里,怎么做“我爱你”的一个程序呢?
#includestdio.h
#includestdlib.h
intmain(void)
{
puts("我爱你");
returnEXIT_SUCCESS;
}
扩展资料
C++的表达方式
usingnamespaceSystem;
voidmain()
{
Console::WriteLine("我爱你");
}