Advertisement
magrega

Untitled

May 24th, 2021
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Code_Coach_Challenge
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. int[][] jaggedArr = new int[][]
  11. {
  12. new int[ ] {1,8,2,7,9},
  13. new int[ ] {2,4,6},
  14. new int[ ] {33,42}
  15. };
  16.  
  17. int x = jaggedArr[2][1];
  18.  
  19.  
  20.  
  21.  
  22. }
  23. }
  24.  
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement