摘要: 函数又叫方法,是实现某项功能或完成某项任务的代码块 #include<stdio.h>void show(){ printf("I like c language");}int main(){ show(); return 0;} 上面的show()是自定义函数, int main()的int是要求 阅读全文