DanikYakush

Task30

Jul 7th, 2022 (edited)
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1.  public static void task30(int[][] a) {
  2.         for (int i = 0; i < a.length; ++i) {
  3.             System.out.print(a[i][i]);
  4.         }
  5.         System.out.println();
  6.     }
Add Comment
Please, Sign In to add comment