摘要:
数组:相同数据类型的元素按照一定的顺序进行排列生成的集合(一组数据) 一维数组:int [] array=new int[5];int[] array = new int[] {1,2,3,4,5 };int[] array = new int[5] { 1, 2, 3, 4, 5 }; 定义的时候 阅读全文
posted @ 2016-10-18 14:07
丶白
阅读(219)
评论(0)
推荐(0)
摘要:
函数 四种格式 格式1:没有参数,没有返回值(无参无返) 格式2:有参数,没有返回值(有参无返) 格式3:有参数,有返回值(有参有返) 格式4:没有参数,有返回值(无参有返) 比大小 阅读全文
posted @ 2016-10-18 13:48
丶白
阅读(150)
评论(0)
推荐(0)