Advertisement
Guest User

Untitled

a guest
Apr 5th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. package app32;
  2.  
  3. public class app32 {
  4.  
  5.     public static void main(String[] args) {
  6.         // TODO Auto-generated method stub
  7. int[] [] array4= {
  8.         {1, 2},
  9.         {3, 4}
  10. };
  11. System.out.print( array4[0][0]+" ");
  12. System.out.println( array4[0][1]);
  13. System.out.print( array4[1][0]+" ");
  14. System.out.print( array4[1][1]);
  15.     }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement