求N!的另一种方法
摘要:
1 // File Name: text.cpp 2 // Author: sheng 3 // Created Time: 2013年05月09日 星期四 20时02分44秒 4 5 #include <iostream> 6 #include <stdio.h> 7 #include <math.h> 8 #include <string.h> 9 using namespace std;10 11 const long long max_n = 1 << 20;12 long long f[max_n];13 long long 阅读全文
posted @ 2013-05-09 20:53 圣手摘星 阅读(173) 评论(0) 推荐(0) 编辑