求最小公倍数简便方法

 

static void Main(string[] args)   

      {             var robin = Enumerable.Range(1, 101).ToList();       

      List<Int32> lis = new List<int>();          

   robin.ForEach(m =>             {                 if (m %3== 0 && m % 5 == 0)         

        {

                    lis.Add(m);                 };                    

      });          

   Console.WriteLine(lis.Min());    

                }

 

posted @ 2013-06-20 11:04  yycan  阅读(239)  评论(0编辑  收藏  举报