How can i return arrays?

Return histo like this:

public static int[] histograma(int[] notas, int[] histo){
     // code
     return histo;
}

Leave a Comment