#1.net
#include<stdio.h> int main(void) { printf("劉容燦\\n"); printf("劉\\n"); printf("劉容\\n"); printf("劉容燦n"); return 0; }
![](https://oscimg.oschina.net/oscnet/7eb88174c80f7b1a6b47ca4745028716a24.jpg)
#2code
#include<stdio.h> int main(void) { printf("李鑫磊\\n"); printf("浙江樹人大學\\n"); return 0; }
#3blog
int main(void) { int ageYear; ![](https://oscimg.oschina.net/oscnet/ea53343496fff76f062fb64cb3ad0143677.jpg) int ageDays; int totalDays; ageYear=18; ageDays=365; totalDays=ageYear*ageDays; printf("totalDays=%d",totalDays); return 0; } ~~~ ![](https://oscimg.oschina.net/oscnet/06ec6c69d181374cd0d4eed5a5c144cb42a.jpg) #4
#include<stdio.h>
void jolly();
void deny();
int main(void)
{
jolly();
jolly();
jolly();
deny();
return 0;
} three
void jolly()
{
printf("For he's a jolly good fellow!\n");
}ci
void deny()
{
printf("Which nobody can deny!\n");
}io
#5
#include<stdio.h>
void br();
void ic();
int main()
{
br();
printf(",");
ic();
printf("\n");
ic();
printf(",");
printf("\n");
br();
return 0;
}class
void br()
{
printf("Brazil,RUssia");
}im
void ic()
{
printf("Lndia,China");
}d3
![](https://oscimg.oschina.net/oscnet/f6fce615f06e7cae00db17c0dd23b6bed9c.jpg) #6
#include<stdio.h>
int main(void)
{
int toes=10;
int dbtoes,pftoes;
dbtoes=toes2;
pftoes=toestoes;
printf("%d\n",toes);
printf("%d\n",dbtoes);
printf("%d\n",pftoes);
return 0;
}db
![](https://oscimg.oschina.net/oscnet/d7bf72e02d452a1d43137b9155ea02235e7.jpg) #7
#include<stdio.h>
void wx();
void hh();
int main(void)
{
wx();
wx();
wx();
hh();
wx();
wx();
hh();
wx();
hh();
return 0;
}
void wx()
{
printf("Smile!");
}
void hh()
{
printf("\n");
}
![](https://oscimg.oschina.net/oscnet/fc93159c3ff4c1f50b6571ce80a55119b52.jpg) #8
#include<stdio.h>
void one_three();
void two();
int main(void)
{
printf("starting now\n");
one_three();
printf("done!\n");
return 0;
}
void one_three()
{
printf("one\n");
two();
printf("three\n");
}
void two() { printf("two\n"); }