上车人数-题解(C++代码) 摘要: #include #include using namespace std; int main() { int a,n,m,x,b; …… 题解列表 2020年03月22日 0 点赞 0 评论 387 浏览 评分:9.9
1179 上车人数 斐波那契数列的应用 摘要:# # 思路 先尝试一下计算出在某一站的总人数的通项公式,设a为第一站上车的人数,b为第二站上车和下车的人数,可计算出通项公式为`f1(n)*a+f2(n)*b`,其中: f1(0)=f1(1)=…… 题解列表 2022年11月05日 0 点赞 0 评论 177 浏览 评分:9.9
1179: 上车人数(有点意思) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[100],b[100],c[100];//数组a上车…… 题解列表 2024年03月14日 0 点赞 0 评论 127 浏览 评分:9.9