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

后端 未结 6 392
执念已碎
执念已碎 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:56

    Your method findAverage(heights) has to return a value to be applicaable for the binary operator +, which takes two operants.

提交回复
热议问题