标签:int ace lan end style 一个 cout ret ons
wiki上看到了一个厉害的递推式
1 #include <iostream> 2 using namespace std; 3 4 int main() { 5 const int len = 121; 6 int num[len + 1] = { 1 }; 7 8 for (int i = 1; i <= len; ++i) 9 for (int j = i; j <= len; ++j) 10 num[j] += num[j - i]; 11 12 for (int i = 0; i <= len; i++) 13 cout << i << ‘ ‘ << num[i] << endl; 14 return 0; 15 }
标签:int ace lan end style 一个 cout ret ons
原文地址:http://www.cnblogs.com/shuiming/p/7377501.html