Template metaprogramming solution:
The following assumes the lower bound of the range is 0.
template <int N>
struct sum
{
static const int value = sum<N-1>::value + (N % 3 == 0 || N % 5 == 0 ? N : 0);
};
template <>
struct sum<0>
{
static const int value = 0;
};
int main(int argc, char** argv)
{
int n = sum<999>::value;
return 0;
}
The following will allow you to specify a range of numbers (e.g. 0-999, 20-400). I'm not a master of template metaprogramming so I couldn't think of a cleaner solution (and I did this for my own benefit and practice).
template <int N, int Upper, bool IsLast>
struct sum_range_helper
{
static const int value = (N % 3 == 0 || N % 5 == 0 ? N : 0) + sum_range_helper<N + 1, Upper, N + 1 == Upper>::value;
};
template <int N, int Upper>
struct sum_range_helper<N, Upper, true>
{
static const int value = (N % 3 == 0 || N % 5 == 0 ? N : 0);
};
template <int Lower, int Upper>
struct sum_range
{
static const int value = sum_range_helper<Lower, Upper, Lower == Upper>::value;
};
int main(int argc, char** argv)
{
int n = sum_range<0, 999>::value;
return 0;
}
accumulatealgorithm and a lambda function. I came up with a cool Python solution, though:sum(x for x in range(0, 1000) if x%3 == 0 or x%5 == 0). – Fred Larson Oct 8 '11 at 3:38(0..999).select { |a| a % 3 == 0 || a % 5 == 0 }.inject(:+)then? :-) – Michael Kohl Oct 8 '11 at 9:58