摘要: 函数(一) 1.四种函数 1.无类型,无参数 void xxx();//函数的声明 int main{ xxx(); return 0; } void xxx()//实现函数功能 {printf("hello"); } 2.有类型,无参数 #include<stdlib.h> #include<ti 阅读全文
posted @ 2020-10-16 00:59 鹤儿哈 阅读(155) 评论(0) 推荐(0) 编辑