题解 2919: 奖学金

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

筛选

奖学金(结构体实在是太好用啦)

摘要:解题思路:注意事项:注意只有前五名才有奖学金参考代码:#include<stdio.h> struct student  {     int sno;     int Chinese;   ……

2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{   int xh,zf,a,b,c;} s[1000……

重写compare方法

摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Comparator;import java.util.Scanner;class St……

编写题解 2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { int id; int yw, sx, yy; int sum;};struct student a[……