zoukankan      html  css  js  c++  java
  • 下午写的一个代码,还没调试

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace ConsoleApplication1
    {

        class Program
        {

            static int MaxValue(int[] intArray)
            {
                int maxVal = intArray[0];
                for (int i = 1; i < intArray.Length; i++)
                {
                    if (intArray[i] > maxVal)
                        maxVal = intArray[i];
                }
                return maxVal;
            }

            static void Main(string[] args)
            {
                //int[] myArray = {1,23,45,34,53,52,64,111};
                //int maxVal = MaxValue(myArray);
                //Console.Write("数组中的最大值是:{0}",maxVal);
                //Console.ReadKey();

                int[] myArray ={0,0,0,0,0 };
                int i=0;

                do
                {
                Console.Write("请输入N个数据,用逗号隔开!");
                myArray[i] = Convert.ToInt32(Console.ReadLine());
                i++;
                }while(Console.ReadLine().ToString() != "e");

                int max =MaxValue(myArray);

             //   max(a,b);
                Console.WriteLine("你输入的最大值是:{0}", max);
                Console.ReadKey();
            }
        }
    }

  • 相关阅读:
    Linux 使用grep过滤多个条件及grep常用过滤命令
    看Linux0.11源码分析书籍,补充知识
    调用门描述符格式
    可能用到的一些寄存器
    002. Linux0.00 head.s注释
    linux0.00 的Makefile
    [转载] Bochs 常用的调试指令
    001. 注释过的boot.s
    PHP接口编程——调用第三方接口获取天气
    phpstudy中让ThinkPHP5访问去除/public/index.php
  • 原文地址:https://www.cnblogs.com/gfwei/p/524470.html
Copyright © 2011-2022 走看看