#include<stdio.h>
void new_2099()
{
printf("东莞艺嘉包装印刷有限公司\n");
}
void three_2099()
{
int i = 0;
for(i=0;i<3;i++)
{
new_2099();
}
}
int main()
{
three_2099();
return 0;
}
标签:调用,int,2099,void,three,嵌套,new,main,hehe From: https://blog.51cto.com/u_13668714/5837398