Advertisement
thenewboston

Java Programming Tutorial - 33 - Multidimensional Arrays

Aug 22nd, 2014
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. public class apples {
  2.    public static void main (String[] args){
  3.       int firstarray[][] = {{8,9,10,11},{12,13,14,15}};
  4.       int secondarray[][] = {{30,31,32,33},{43},{4,5,6}};
  5.    }
  6.  
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement