题解 1179: 上车人数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1179: 上车人数(有点意思)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a[100],b[100],c[100];//数组a上车……

1179: 上车人数

摘要:```cpp #include #include using namespace std; int main() { int a,n,m,x,b; while(cin>>……

1179 上车人数 斐波那契数列的应用

摘要:# # 思路 先尝试一下计算出在某一站的总人数的通项公式,设a为第一站上车的人数,b为第二站上车和下车的人数,可计算出通项公式为`f1(n)*a+f2(n)*b`,其中: f1(0)=f1(1)=……

编写题解 1179: 上车人数

摘要:解题思路:注意事项:参考代码:a,n,m,x=map(int,input().split()) up=[a] def get(a,x,z):     up=[a,x]     down=[0,……

题解 1179: 上车人数

摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<math.h>int main(){    int a,n,m,x;    scanf("%d%d……

Python自己调用自己

摘要:a,n,m,x=map(int,input().split())def qiushu(zs,ss,s,dj):    if dj==n-1:        if zs==m:            r……