mr-wuxiansheng

public static void main(String args[]) 
     {        //Double[] num = { 45.1,45.2 };
              List dlist=new ArrayList();
              dlist.add(45.1);
              dlist.add(45.2);
              dlist.add(110.22);
              Double max = (Double)dlist.get(0);     
              Double min = (Double)dlist.get(0); 
            for (int i = 0; i < dlist.size(); i++) {          
                      if (min > (Double)dlist.get(i)) min = (Double)dlist.get(i);   
                       if (max < (Double)dlist.get(i)) max = (Double)dlist.get(i);        
               }        
                        System.out.println("max的值为" + max + "min的值为" + min);    
      }

分类:

技术点:

相关文章:

  • 2021-06-17
  • 2021-10-27
  • 2021-10-27
  • 2021-10-17
  • 2021-09-20
  • 2021-07-30
  • 2021-10-17
  • 2021-10-17
猜你喜欢
  • 2021-12-27
  • 2022-01-05
  • 2021-10-17
  • 2020-11-09
  • 2018-02-24
  • 2021-10-17
  • 2021-12-02
相关资源
相似解决方案