CodeFoeces-124A

题目

原题链接:A. The number of positions

题意

有n个人,要求站在后面不大于b人,前面不少于a人的位置。倒着找就可以了。

代码

#include
using namespace std;
int main() {
    int n,a,b;
    scanf("%d%d%d",&n,&a,&b);
    for(int i=n;i>=1;i--){
        if(n-i>=a && i-1<=b){
            printf("%d\n",i);
            break;
        }
    }
    return 0;
}

你可能感兴趣的:(CodeFoeces-124A)