Re: [问题] 九九乘法表不用循环是叫我直接从1列到81?

楼主: yoco (眠月)   2018-08-02 23:51:01
被呛我难过,回家反省,确定这个直接 template-meta 的版本没人给过
#include <cstdio>
template <int N, int M> struct p {
static void foo() {
printf("%2d x %2d = %2d\n", N, M, N * M); p<N, M + 1>::foo();
}
};
template <int N> struct p<N, 9> {
static void foo() {
printf("%2d x %2d = %2d\n", N, 9, N * 9); p<N + 1, 1>::foo();
}
};
template <> struct p<9, 9> {
static void foo() {
printf("%2d x %2d = %2d\n", 9, 9, 9 * 9);
}
};
int main() {
p<1, 1>::foo();
}
等等来试试看 main recursive
作者: soheadsome (师大狗鼻哥)   2018-08-03 00:01:00
现在人家都用constexpr
楼主: yoco (眠月)   2018-08-03 00:07:00
我... 我知道错了..... 对不起拿十年前的技术伤大家的眼...

Links booklink

Contact Us: admin [ a t ] ucptt.com