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 123 views
1 answer 116 views
3 answers 324 views
3 answers 252 views
1 answer 152 views
152 views asked Jul 25, 2019 by avibootz
4 answers 236 views
...