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);    
      }

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
  • 2022-01-30
  • 2022-12-23
  • 2023-03-22
猜你喜欢
  • 2021-12-27
  • 2022-01-05
  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案