The operator + is undefined for the argument type(s) String, void

后端 未结 6 389
执念已碎
执念已碎 2021-01-29 13:41
public class chap7p4 {
    public static void main(String[] args) {
        int[] heights = { 33, 45, 23, 43, 48, 32, 35, 46, 48, 39, 41, };
        printArray(heights);         


        
6条回答
  •  星月不相逢
    2021-01-29 13:48

    findAverage has a void return type. Change the return type for the method to return an int value

    public static int findAverage(int[] array) {
     ...
     return total / array.length;
    }
    

提交回复
热议问题