编一个程序,定义一个数组,再定义类以及方法,用方法(out参数传递数据)找出这组数据中的最大数和最小数。

可以给个简单的例子吗?... 可以给个简单的例子吗? 展开
 我来答
freeeeeewind
2014-11-12 · TA获得超过1万个赞
知道大有可为答主
回答量:3227
采纳率:94%
帮助的人:1360万
展开全部
using System;

namespace ConsoleApplication3
{
    class Test
    {
        public void GetMax(int[] a, out int max)
        {
            max = int.MinValue;
            for (int i = 0; i < a.Length; i++)
            {
                if (a[i] > max) max = a[i];
            }
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            int[] a = { 1, 100, 2, 3, 4 };
            int m = 0;
            Test t = new Test();
            t.GetMax(a, out m);
            Console.WriteLine("Max = {0}", m);
        }
    }
}

Test类实现你要求的功能!

追问
最小值也是这样 ?
追答
using System;
 
namespace ConsoleApplication3
{
    class Test
    {
        public void GetMax(int[] a, out int max, out int min)
        {
            max = int.MinValue;
            min = int.MaxValue;
            for (int i = 0; i < a.Length; i++)
            {
                if (a[i] > max) max = a[i];
                if (a[i] < min) min = a[i];
            }
        }
    }
 
    class Program
    {
        static void Main(string[] args)
        {
            int[] a = { 1, 100, 2, 3, 4 };
            int max = 0;
            int min = 0;
            Test t = new Test();
            t.GetMax(a, out max, out min);
            Console.WriteLine("Max = {0}; Min = {1}", max, min);
        }
    }
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式