标签:android style blog http ar io color os sp
------<a href="http://www.itheima.com" target="blank">Java培训、Android培训、iOS培训、.Net培训</a>、期待与您交流! -------
1 //访问修饰符 2 public class A_63 { 3 public static void main(String[] args){ 4 int arr[]={4213,432,43,543,234}; 5 int arr1[]={53,123,456,765,876}; 6 System.out.println(max(arr)); 7 8 } 9 10 11 12 public static int max(int[] k){ 13 /** 14 取int数组里面的最小值 15 @param k 传人一个int数组 16 @param 返回一个数组 17 18 */ 19 20 int max=k[0]; 21 for(int i=1;i<k.length;i++){ 22 if(k[i]>max){ 23 max=k[i]; 24 } 25 } 26 return max; 27 28 } 29 }
标签:android style blog http ar io color os sp
原文地址:http://www.cnblogs.com/shuiyinmeizi/p/4173211.html