码迷,mamicode.com
首页 > 其他好文 > 详细

例题:函数输出参数。理解函数的作用,函数是一个相对独立的代码块

时间:2015-04-15 16:59:02      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

class Program
    {
        public  int[] shuchucanshu(int[] shu,out int a,out int b) //基本格式,定义一个int数组
        {
            for (int i = 0; i < shu.Length ; i++) //冒泡排序
            {
                for (int j = i; j < shu.Length -1; j++)
                {
                    if (shu[i]<shu[j+1])
                    {
                        int zhong = 0;
                        zhong = shu[i];
                        shu[i] = shu[j + 1];
                        shu[j + 1] = zhong;
                    }
                }
            }
            a = shu[0]; //最大值
            b = shu[shu.Length - 1];//最小值。排序已经拍好,[shu.Length - 1]是最小数的下标
          
            return shu;
        }
        static void Main(string[] args)
        { 
            int a,b; //声明,与函数里的a,b没有任何关系,函数是独立的代码块
            int[] shu=new int[5]{1,3,5,9,6};
            new Program ().shuchucanshu (shu,out a,out b); //调用函数
            for (int i = 0; i < shu.Length ; i++)
            {
                Console.WriteLine(shu[i]);
            }
            Console.WriteLine("最大值是"+a+",最小值是"+b);
            Console.ReadLine();
        }

例题:函数输出参数。理解函数的作用,函数是一个相对独立的代码块

标签:

原文地址:http://www.cnblogs.com/275147378abc/p/4428849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!