通过代码:
#include <bits/stdc++.h> using namespace std; long long n, step[101] = { 0, 1, 2, 4 }; int main() { for(int i = 4; i <= 100; i ++) step[i] = step[i - 1] + step[i - 2] + step[i - 3]; while(scanf("%lld", &n) && n) printf("%lld\n", step[n]); return 0; }
1190:上台阶
最新推荐文章于 2024-08-29 09:41:06 发布