编写一个程序,找出一维数组中元素的最大值、最小值以及极差

编写一个程序,找出一维数组中元素的最大值、最小值以及极差

public class sss {

public static void main(String[] args) {
// TODO Auto-generated method stub
     int[] s = {2,1,5,7,9};
     int a=s[0];
     int b=s[0];
     for(int i=1;i<s.length;i++)
     {
      if(a>s[i])
      {
      a=s[i];//确保a为当前最小
      }
      if(b<s[i])
      {
      b=s[i];//确保b为当前最大
      } 
     }
     System.out.println("数组中最小数为"+a+"。"+"最大数为"+b+"。"+"极差为"+(b-a));
}

}

温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答