摘要: 阶乘函数 斐波那契数列 #include <iostream> #include <cstring> #include <algorithm> using namespace std; // 阶乘函数 int fact(int n) { if(!n) return 1; return n * fac 阅读全文
posted @ 2018-11-21 20:32 Draymonder 阅读(214) 评论(0) 推荐(0) 编辑