|
|
#2
rjsp2018-08-14 15:04
我想不通,为什么不肯贴出原始链接?比如 https://www.
不贴也就算了,为什么必要的信息都不肯贴全?比如 如果两个同学总分相同,再按语文成绩从高到低排序,如果两个同学总分和语文成绩都相同,那么规定学号小的同学 排在前面 第 111 行为一个正整数 n(≤300) 而且,以上提到的两点在你的代码中都没有体现!!! 程序代码:#include <iostream> #include <algorithm> #include <functional> using namespace std; struct score { unsigned id; unsigned chinese; unsigned mathematics; unsigned english; bool operator>( const score& s ) const { if( chinese+mathematics+english > s.chinese+s.mathematics+s.english ) return true; if( chinese+mathematics+english < s.chinese+s.mathematics+s.english ) return false; if( chinese > s.chinese ) return true; if( chinese < s.chinese ) return false; return id < s.id; } friend std::istream& operator>>( std::istream& is, score& s ) { return is >> s.chinese >> s.mathematics >> s.english; } }; int main( void ) { size_t n; cin >> n; score buf[300]; for( size_t i=0; i!=n; ++i ) { buf[i].id = i+1; cin >> buf[i]; } partial_sort( buf, buf+5, buf+n, std::greater<score>() ); for( size_t i=0; i!=5; ++i ) { cout << buf[i].id << ' ' << (buf[i].chinese+buf[i].mathematics+buf[i].english) << '\n'; } } |
【问题描述】
某小学最近得到了一笔赞助,打算拿出其中一部分为学习成绩优秀的前5名学生发奖学金。期末,每个学生都有3门课的成绩:语文、数学、英语。按总分从高到低排序,
任务:先根据输入的3门课的成绩计算总分,然后按上述规则排序,最后按排名顺序输出前5名学生的学号和总分。
【输入格式】
第1行为一个正整数n,表示该校参加评选的学生人数。
第2到n+1行,每行有3个用空格隔开的数字,每个数字都在0到100之间。第j 行的3个数字依次表示学号为j-1的学生的语文、数学、英语的成绩。每个学生的学号按照输入顺序编号为1~n(恰好是输入数据的行号减1)。 所给的数据都是正确的,不必检验。
【输出格式】
共有5行,每行是两个用空格隔开的正整数, 依次表示前5名学生的学号和总分。
【输入样例】
6
90 67 80
87 66 91
78 89 91
88 99 77
67 89 64
78 89 98
输出样例
6 265
4 264
3 258
2 244
1 237
#include<bits/stdc++.h>
using namespace std;
double c[101],m[101],e[101],z[301];
int main(){
int n,b[101];
cin>>n;
for(int i=1;i<=n;i++)
cin>>c[i]>>m[i]>>e[i];
for(int i=1;i<=n;i++)
{
z=0;
z[i]=c[i]+m[i]+e[i];
}
for(int i=1;i<=n;i++)
for(int j=n;j>=i+1;j--)
if(z[j]>z[j-1])
{
int t;
t=z[j];
z[j]=z[j-1];
z[j-1]=t;
int p;
p=b[j];
b[j]=b[j-1];
b[j-1]=p;
}
for(int i=2;i<=n;i++)
cout<<z[i]<<' '<<b[i];
return 0;
}
程序代码: