How to create ArrayList of int numbers in java

1 Answer

0 votes
import java.util.*;

public class MyClass {
    public static void main(String args[]) {
        ArrayList<Integer> al = new ArrayList<Integer>();
        
        al.add(1);  
        al.add(-3);
        al.add(5);
        al.add(8);

        System.out.println(al); 
    }
}


/*
run:

[1, -3, 5, 8]

*/

 



answered Apr 24, 2019 by avibootz

Related questions

1 answer 131 views
1 answer 177 views
1 answer 213 views
213 views asked Jan 16, 2022 by avibootz
1 answer 144 views
2 answers 176 views
3 answers 240 views
240 views asked Mar 22, 2021 by avibootz
1 answer 162 views
162 views asked Jun 28, 2020 by avibootz
...