class Todimensjonale { public static void main(String[] args) { int rad = 5; int kol = 5; int[][] toDim = new int[rad][kol]; for (int i = 0; i < rad; i++) { for (int j = 0; j < kol; j++) { int tall = toDim[i][j]; } } } }