标签:
int main()
{
return 0;
}
int test()
{
return 0;
}
int main()
{
test();
return 0;
}
#include <stdio.h>
int main()
{
printf("Hello World!");
return 0;
}
用2种不同的代码方式输出下面的图案
************
** itcast **
************
内容来源:传智播客李明杰老师授课内容
标签:
原文地址:http://www.cnblogs.com/codersay/p/4301336.html