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 return array from a method in Java

2 Answers

0 votes
import java.util.Arrays;

public class MyClass {
    public static int[] getArray() {
        return new int[] {1, 2, 3, 4, 5, 6, 7, 8};  
    }
    public static void main(String args[]) {
        int[] array = getArray();

        System.out.println(Arrays.toString(array));
        
        for (int i = 0; i < array.length; i++) { 
            System.out.println(array[i]);  
        }  
    }
}




/*
run:
     
[1, 2, 3, 4, 5, 6, 7, 8]
1
2
3
4
5
6
7
8
     
*/

 



answered May 29, 2019 by avibootz
edited Oct 6, 2023 by avibootz
0 votes
public class MyClass {
    public static int[] reverse(int[] arr) { 
        int[] rev = new int[arr.length];
        
        for (int i = 0, j = rev.length - 1; i < arr.length; i++, j--) { 
            rev[j] = arr[i]; 
        }
        return rev;
    }
    public static void main(String args[]) {
        int[] arr1 = {1, 2, 3, 4, 5};
        int[] arr2 = reverse(arr1);
        
        for (int i = 0; i < arr2.length; i++) { 
            System.out.print(arr2[i] + " ");
        }
    }
}


/*
run:

5 4 3 2 1 

*/

 



answered Jul 11, 2019 by avibootz

Related questions

1 answer 101 views
1 answer 89 views
3 answers 285 views
3 answers 216 views
1 answer 130 views
130 views asked Jul 25, 2019 by avibootz
4 answers 191 views
...