public class Es3 { public static void raddoppia(int[] l, int[][] m) { for (int i = 0; i < m.length; i++) { m[i][l[i]] *= 2; } } }