题解 1106: 奖学金

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

筛选

奖学金-题解(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void put_number(int n);//输入参数void sort(int (*sum)[2],int (*grade)[3]……

奖学金-题解(C语言代码)

摘要:解题思路:代码很差 但是能通过 C语言注意事项:参考代码:#include<stdio.h>typedef struct{ int num; int chinese; int math; int en……

奖学金 (C++代码)

摘要:解题思路:注意事项:不能多组输入参考代码:#include<cstdio> #include<iostream> #include<algorithm> using namespace std;……

奖学金 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){    int n;    scanf("%d",&n);    int i[305],j[305],k[305]……

奖学金-题解(C语言代码)

摘要:排名前五的学生可以获得奖学金,先比较总分、比较语文分数、比较学号;输出前五个人的学号和总分。 #include typedef struct //定义学生信息结构体,存储学号、成绩……

奖学金 (C++代码)

摘要:整理学习:方式一:    自定义 cmp() 比较函数#include<cstdio> #include<algorithm> using namespace std; struct Stu……

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

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

运用python字典解题

摘要:解题思路:题目有干扰,要逆序思考,先按序号升序排列,再按语文成绩降序排列,最后再按总分降序排列注意事项:参考代码:n=eval(input())a=[]score=[]stu={}for i in r……