题解 1106: 奖学金

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

筛选

奖学金(利用结构体和sort)

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm>//利用sort排序  using namespace std; struct St……

可以用结构体编写

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct garde { int sum; int xuehao;};int main(){int arr[1000] = { 0 ……

奖学金(c语言代码)

摘要:解题思路:像正常排序一样,只不过这道题判断大小分多钟情况,只需要在判断大小的函数上稍加修改就可以了。使用库函数qsort跑不过,所以自己写了一个。 ```c #include #include ……

1106基础解法(Python)

摘要:解题思路:利用Python列表特性解题注意事项:sort()的项是按tuple类型中的元素从前到后依次进行的参考代码:n = int(input())lst = []lst_sum = []lst_i……

纯粹用指针和二维数组解决(c语言)

摘要:解题思路:把学号、三科成绩都储存到二维数组中,进行三次排序...注意事项:每次排序时使用指针p去找,而不是arr, 其地址赋给指针p后我们便不再需要arr参考代码:#include <stdio.h>……

敲简单C语言代码!!!

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int sc[10000][5];    int i,t;    int n,e,f;    scanf ……

1106: 奖学金

摘要:```cpp #include #include using namespace std; struct student { int id,Chinese,score; }stu……