题解 1179: 上车人数

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

筛选

上车人数 (C语言代码)

摘要:解题思路:关键在于设法求出第二站到底上了多少人注意事项:记得在恰当的时候要存值和保留某些变量原有的值参考代码:#include<stdio.h> int main() {     int a,n……

题解 1179: 上车人数

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

上车人数 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;//注:第二站虽然上车下车人数相等,但上车人数为x不确定,并非是0public class A1179上车人数 { pu……

上车人数 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int add(int a,int n,int Y){    if(n==1) return a;    else if(n==2) r……

编写题解 1179: 上车人数

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

上车人数 (C语言代码)

摘要:解题思路:关键是求出第二站上车的人数注意事项:参考代码:#include <stdio.h>int E(int n, int b, int a);int F(int n);int D(int n);i……

上车人数 (C语言代码)

摘要:解题思路:根据题目:        x站后车上的人数 = (x-1)站后车上的人数 + x 站上车人数 - x站下车人数构造三个函数:int shangche(int a,int n,int dier……

上车人数 (C语言代码)

摘要:解题思路:从第二站开始,就需要知道上车人数,由题目得知:第二站一定有人上下车,由于上一站上了a个人,那么第二站最多下车人数是a,由于第二站的下车人数与上车人数相等,那么第二站上车人数的范围应该在1到a……