题解 1106: 奖学金

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

筛选

不知道哪里错了

摘要:#include<cstdio> #include<iostream> #include<algorithm> using namespace std; int n; struct Stu{……

奖学金 (C语言代码)

摘要:解题思路:    结构体+快速排序参考代码:#include <stdio.h> #include <stdlib.h> struct stu { int num;//学号 int a,……

奖学金 (C语言代码)

摘要:解题思路:没什么特别的计算,就照原题思路走一遍就行了。注意事项:参考代码:#include<stdio.h>#include<string.h>int change( int a[500][4],in……

奖学金 (C++代码)

摘要:解题思路:注意事项:参考代码:提供一种简洁的比较函数。struct stu{    int chi,math,eng,tot,rank;//语数外,总分,号码}a[1001];bool cmp(stu……

奖学金 (C语言代码)

摘要:解题思路:能力有限,感觉算是比较简洁的了。注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; struct……

奖学金 (C语言代码)

摘要:解题思路:利用结构体注意事项:参考代码:#include<stdio.h>typedef struct student{ int num; int chinese; int math; int Eng……

奖学金 (C语言代码)

摘要:解题思路:设计学生成绩结构,成员有学号、语文分和总分。定义学生成绩数组,在输入数据过程中,首先按照数组的下标建索引,并记录相应的学号和分数;这里不仅要按总分从高到低排序,还要在总分相同时,按语文成绩从……

奖学金 (C++代码)

摘要:解题思路: 利用STL中的sort函数即可很简单实现。(1)先按照总分排序;(2)总分相同再按照语文排序;(3)语文相同,则按照学号排序。(4)输出前5项即可。参考代码:#include <bits/……