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

1 Answer

0 votes
import java.util.Arrays;

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

        System.out.println(Arrays.toString(array));
    }
}



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

 



answered Oct 6, 2023 by avibootz

Related questions

1 answer 101 views
2 answers 187 views
187 views asked May 29, 2019 by avibootz
3 answers 285 views
3 answers 216 views
1 answer 130 views
130 views asked Jul 25, 2019 by avibootz
4 answers 191 views
...