Advertisement
Utshaw

Untitled

Oct 25th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. package testpackage;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Driver
  6. {
  7. public static void main(String[] args) {
  8. int b[][] = { {1,2},{3,4,5}};
  9. System.out.println(b[0][0]);
  10. System.out.println(b[0][1]);
  11. System.out.println(b[1][0]);
  12. System.out.println(b[1][1]);
  13. System.out.println(b[1][2]);
  14. }
  15. }
  16. /*
  17. 1 2
  18. 3 4 5
  19. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement