Programming

(C#) One-liner

steloflute 2012. 5. 28. 00:22
Console.WriteLine(Enumerable.Range(1, 999).Where(x => x % 3 == 0 || x % 5 == 0).Sum());