How to find the last index of a value in an Integer array with Java

1 Answer

0 votes
import java.util.Arrays;

public class Program {
    public static void main(String[] args) {
        Integer[] arr = {2, 4, 8, 8, 2, 1, 1, 7, 5, 3, 8, 9, 8, 5, 1};
        
        System.out.println("index = " + Arrays.asList(arr).lastIndexOf(8));
    }
}


 
/*
run
 
index = 12
 
*/


 



answered May 31, 2024 by avibootz
...