发布网友
共4个回答
热心网友
#include<stdio.h>
#include<stdlib.h>
intmain(void)
{
puts("我爱你");
returnEXIT_SUCCESS;
}
扩展资料
C++的表达方式
usingnamespaceSystem;
voidmain()
{
Console::WriteLine("我爱你");
}
热心网友
循环控制打印个爱心出来。
这个貌似太没技术含量了,不过C本来就不是浪漫的语言,怎么能唱出动听的情话?
热心网友
/* Note:Your choice is C IDE */
#include "stdio.h"
main()
{
for( ; ;)
{
printf("**** **** ****\n");
printf("* * * *\n");
printf("**** **** * *\n");
printf(" * * * *\n");
printf("**** **** ****\n");
getch();
}
}
热心网友
#include<stdio.h>
main()
{
printf("我爱你!");
}