C# for和 foreach 的数组遍历 比较_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C# for和 foreach 的数组遍历 比较

C# for和 foreach 的数组遍历 比较

 2014/6/25 17:52:57  每天进步一点点!  程序员俱乐部  我要评论(0)
  • 摘要:刚学习程序,感觉写代码很有意思,所以把自己的感悟写下来啦,第一次写博客,可能是菜鸟中的菜鸟时间久了,相信就会写的很好哦!for和foreach的数组遍历比较很简单的程序,不解释啦!usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespaceConsoleApplication1{classProgram{staticvoidMain(string[]args){int[]nums=
  • 标签:C# for 遍历 数组

     刚学习程序,感觉写代码 很有意思,所以把自己的感悟写下来啦,第一次写博客,可能是菜鸟中的菜鸟  时间久了,相信就会写的很好哦! 

   for和 foreach 的数组遍历 比较

    很简单的程序,不解释啦!

class="brush:csharp;gutter:true;">using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {

            int[] nums = { 3, 5, 99, 23, 53, 88 }; //定义数组
            int max = 0;
      
            for (int i = 0; i < nums.Length; i++)   //for遍历数组
            {
                if (nums[i] > max)
                {
                    max = nums[i];
                }
            }
            Console.WriteLine("for遍历数组demo:" + max);
            Console.WriteLine("====================================================");
            foreach (var p in nums)               //使用foreach 遍历
            {
                if (p > max)
                {
                    max = p;
                }

            }
            Console.WriteLine("foreach遍历数组demo:"+max);
           
           
            
        }
        
    }
}

   结果为:

 

 

 

发表评论
用户名: 匿名