Return Last 50 posts First 100 posts

Please help fix this!

1 Name: Anonymous : 2017-04-06 20:13
#include <cstdio>

template <unsigned Number, unsigned D>
struct is_prime_rec
{
static const bool value = (D * D > Number) ? true :
(Number % D == 0) ? false :
is_prime_rec<Number, D + 1>::value;
};

template <unsigned Number>
struct is_prime
{
2 Name: Anonymous : 2017-04-07 09:31
Sorry, C++ can't be fixed.
3 Name: Anonymous : 2017-04-10 22:06
I can't parse that!

Return Last 50 posts First 100 posts

Name: