摘要: 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) 推荐(0) 编辑