[Java] Nhập 1 dãy số bất kì. In Max, Min.

Thảo luận trong 'Bài Giảng CNTT K7' bắt đầu bởi Nguyễn Thành Đạt It, 24/4/17.

  1. Nguyễn Thành Đạt It

    Nguyễn Thành Đạt It Guest Registered

    Tham gia ngày:
    28/9/16
    Bài viết:
    435
    Đã được thích:
    4
    Điểm thành tích:
    18
    Giới tính:
    Nam
    Nghề nghiệp:
    N/A
    Nơi ở:
    N/A
    Web:
    N/A

    Lập trình Java: Nhập 1 dãy số bất kì. In Max, Min.
    Phần mềm: NetBean 8.2

    CODE:
    Select All
    package cau5;

    import java.util.InputMismatchException;
    import java.util.Scanner;

    public class 
    Cau5 {

        public static 
    void main(String[] args)throws Exception
        
    {
            
    Scanner in=new Scanner(System.in);
                
    int n=0;
                
    double max=0;
            
                try{
                        
    System.out.println("Mời bạn nhập số phần tử của mảng : ");
                        
    n=in.nextInt();
                }catch(
    InputMismatchException e)
                {
                    
    System.out.println("Sai kiểu");
                }

                        
    double[] d=new double[n];
                        for(
    int i=0;i<n;i++)
                        {
                            
    System.out.println("Nhập phần tử thứ "+i);
                            
    d[i]=in.nextDouble();
                        }
              
                
    //xuat mang:
                //for(int i=0;i<d.length;i++)
                //{
                //    System.out.println("Phần tử thứ "+i+" la :"+d[i]);
                //}
            //Tìm Max
            
    for(int i=0;i<d.length;i++)
                {
                    if(
    d[i]>max)
                
                        
    max=d[i];
                
                }
                
    System.out.println("Giá trị Max = "+max);
            
    //Tìm Min
            
    double min 0;
            for(
    int j=0;j<d.length;j++)
                {
                
                    if(
    min>d[j])
                    
                        
    d[j]=min;
                }
                
    System.out.println("Giá trị Min: "+min);

        }
    }
     

    Bình Luận Bằng Facebook

    data-href="https://cnttqn.com/threads/java-nhap-1-day-so-bat-ki-in-max-min.4343.html"