#include<stdio.h>
#include<stdlib.h>
void hello_world()
{
printf("Hello World!\n");
}
void three_hellos()
{
for (int i = 1; i <= 3; i++)
{
hello_world();
}
}
int main()
{
three_hellos();
system("pause");
return 0;
}
【C语言】练习函数调用
最新推荐文章于 2023-03-21 13:28:51 发布