D
Size: a a a
D
🎄T
Q
AF
Q
В
struct prime_factors {
int primes[8];
int exp[8];
}
;template<size_t N, size_t I>
struct is_prime : boost::mpl::if_c<(N%I == 0), boost::mpl::false_, is_prime<N, I - 1>>::type {};
template<size_t N>
struct is_prime<N, 1> : boost::mpl::true_ {};
AF
template<size_t N, size_t I>
struct is_prime : boost::mpl::if_c<(N%I == 0), boost::mpl::false_, is_prime<N, I - 1>>::type {};
template<size_t N>
struct is_prime<N, 1> : boost::mpl::true_ {};
AF
Q
template<size_t N, size_t I>
struct is_prime : boost::mpl::if_c<(N%I == 0), boost::mpl::false_, is_prime<N, I - 1>>::type {};
template<size_t N>
struct is_prime<N, 1> : boost::mpl::true_ {};
SM
struct prime_factors {
int primes[8];
int exp[8];
}
;Q
В
SM
SM
AF
🎄T
AF
SM
AF