Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

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
...