成绩排名
Posted wbyzs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了成绩排名相关的知识,希望对你有一定的参考价值。
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int main() { int n,j=0,k,i,t=0; cin >> n; int a[10000]; while(n--) { cin >> i; a[j++]=i; } sort(a,a+j);cin >> k; for(i=j-1;i>=0;--i) { t++; if(a[i]==k) { cout << t << endl; break; } } return 0; }
以上是关于成绩排名的主要内容,如果未能解决你的问题,请参考以下文章