grodek118

Java Arrays v1

Nov 24th, 2021
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package com.company;
  2.  
  3.  
  4. import java.util.Arrays;
  5.  
  6. public class Main {
  7.  
  8. public static void main(String[] args) {
  9.  
  10. // Arrays
  11. int [] numbers = new int[3];
  12. numbers[0] = 2;
  13. numbers[1] = 0;
  14. numbers[2] = 1;
  15. System.out.println(Arrays.toString(numbers));
  16. }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment