#1.net
#include<stdio.h> int main(void) { printf("劉容燦\\n"); printf("劉\\n"); printf("劉容\\n"); printf("劉容燦n"); return 0; }

#2code
#include<stdio.h> int main(void) { printf("李鑫磊\\n"); printf("浙江樹人大學\\n"); return 0; }
#3blog
int main(void) { int ageYear;  int ageDays; int totalDays; ageYear=18; ageDays=365; totalDays=ageYear*ageDays; printf("totalDays=%d",totalDays); return 0; } ~~~  #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
 #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
 #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");
}
 #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"); }