2024年9月22日
摘要: int main() { auto factorial = [&](int n, auto&& self) -> int { if (n <= 1) return 1; return n * self(n - 1, self); // 调用自己 }; std::cout << "Factorial 阅读全文
posted @ 2024-09-22 22:38 临江柔 阅读(10) 评论(0) 推荐(0) 编辑