₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,326,285 members, 8,425,859 topics. Date: Saturday, 13 June 2026 at 08:50 AM

Toggle theme

TJX's Posts

Nairaland ForumTJX's ProfileTJX's Posts

1 (of 1 pages)

ProgrammingRe: a by TJX(m): 2:47pm On Oct 06, 2011
I don't want to register on your website. Sorry smiley This is C# 4.0


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Contest4 {
class Program {
static void Main(string[] args) {
Console.WriteLine("Result = {0}", Contest4(2, 3, 5, 15));
}
static long Contest4(long a, long b, long c, long d) {
var inputs = new[] { a, b, c };
var result = new List<long>(inputs);
var counter = 0L;
var multiple = 0L;
foreach (var input in inputs) {
counter = 1L;
while ((multiple = input * counter++) < d)
if (!result.Contains(multiple))
result.Add(multiple);
}
return result.Sum();
}
}
}

ProgrammingRe: Who Is The Best Programmer In Nairaland? by TJX(m): 2:27pm On Aug 31, 2011
I am one of the best programmer on Nairaland smiley

1 (of 1 pages)