摘要: // 辅助函数:计算 10 的幂 constexpr int pow10(int n) { return n == 0 ? 1 : 10 * pow10(n - 1); } template <int... Num> struct NumCat; template <int First, int.. 阅读全文
posted @ 2025-03-17 23:21 double64 阅读(37) 评论(0) 推荐(0)