Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- import java.util.Arrays;
- public class Main {
- public static void main(String[] args) {
- // Arrays
- int [] numbers = new int[3];
- numbers[0] = 2;
- numbers[1] = 0;
- numbers[2] = 1;
- System.out.println(Arrays.toString(numbers));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment