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

数组反转显示

时间:2014-09-20 17:36:19      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   strong   for   2014   

class Program
    {
        static void Main(string[] args)
        {
            #region 数组内容反转
            string[] names = { "马云", "李彦宏", "马化腾", "乔布斯", "比尔盖茨" };
            ReverseArray(names);
            for (int i = 0; i < names.Length; i++)
            {
                Console.WriteLine(names[i]);
            }
            Console.ReadKey();
            #endregion
        }
        /// <summary>
        /// 数组内容反转的方法
        /// </summary>
        /// <param name="names"></param>
        private static void ReverseArray(string[] names)
        {
            for (int i = 0; i < names.Length / 2; i++)
            {
                string tmp = names[i];
                names[i] = names[names.Length - 1 - i];
                names[names.Length - 1 - i] = tmp;
            }
        }
    }

显示结果:
bubuko.com,布布扣


 

数组反转显示

标签:style   blog   http   color   io   ar   strong   for   2014   

原文地址:http://www.cnblogs.com/tianqy/p/3983379.html

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