摘要: 1 #include 2 3 #include 4 5 #include 6 7 #include 8 9 10 11 void productArray(int array[]); 12 13 void bubbleSort(int array[]); ... 阅读全文
posted @ 2015-12-08 19:10 芥末勾勒 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 昨天学到的函数,在C语言中是这么叫,而在OC和swift中叫做“方法”。数组 数组不像是“char”、“int”、“float”之类的类型保存单个数据,数组是用来保存多个相同类型的数据的。 在定义数组的时候,必须要确定数组的元素个数! 例://定义一个数组,拥有5个元素,默然每个元素的... 阅读全文
posted @ 2015-12-08 18:45 芥末勾勒 阅读(152) 评论(0) 推荐(0) 编辑