zoukankan      html  css  js  c++  java
  • 数组作为方法参数

    数组作为方法参数:

    package com.imooc.method;
    
    public class ArrayMethod {
        public void printArray(int[] arr) {
            for(int i=0;i<arr.length;i++) {
                System.out.println(arr[i]+" ");
            }
            System.out.println();
        }
        public static void main(String[] args) {
            //数组作为方法参数:
            int[] arr= {10,20,30,40,50};
            ArrayMethod am=new ArrayMethod();
            am.printArray(arr);
        }
    
    }

    求78.5,98.5,65.5,32.5和75.5的平均值:

    package com.imooc.method;
    //求数组的平均值:
    public class ArrayMethod {
        public void avg(float[] arr) {
            float average=0; //平均值:
            float sum=0;
            for(int i=0;i<arr.length;i++) {
                sum+=arr[i];
                System.out.println(arr[i]);
            }
            average=sum/(arr.length);
            System.out.println("数组的平均值:"+average);
        }
        public static void main(String[] args) {
        
            float[] arr= {78.5f,98.5f,65.5f,32.5f,75.5f};
            ArrayMethod am=new ArrayMethod();
            am.avg(arr);
        }
    
    }

  • 相关阅读:
    鼠标滑过,解决ul下 li下a的背景与父级Li不同宽的问题
    php函数
    常用函数之数组函数
    php流程控制
    php运算符
    php常量
    php变量的数据类型
    PHP是什么
    css3新增属性
    html5的常用标签
  • 原文地址:https://www.cnblogs.com/yiweiyihang/p/11968637.html
Copyright © 2011-2022 走看看