简体   繁体   中英

Facing issue in getting the largest integer from Array

Receiving 5,9,7 as output.. Where as the expected should be only 9..Below is the code:

public class GreatestNoInArray {  
    public static void main(String[] args) {                
        int a[]= new int[] {1,2,5,9,7};        
        int big=a[0];        
        for (int i=1; i<a.length; i++){        
            if (big<a[i])        
                big=a[i];                   
            System.out.println(a[i]);        
        }
    }    
}

Please help

对于预期的答案,您需要在循环外面打印big (而不是a[i]

public class GreatestNoInArray {
  public static void main(String[] args) {
      int a[]= new int[] {1,2,5,9,7};
      int big=a[0];

      for (int i=1; i<a.length; i++){
          if (big<a[i])       
              big=a[i];
          }   
      System.out.println(big);
  }
}

code should be like this:

public class GreatestNoInArray {  
    public static void main(String[] args) {                
        int a[] = new int[] {1,2,5,9,7};        
        int big = a[0];        
        for (int i=1; i<a.length; i++){        
            if (big < a[i])        
                big = a[i];                   
            //System.out.println(a[i]);        
        }
    System.out.println("Big: " + big);
    }    
}

This works!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM