题解 1106: 奖学金

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

筛选

敲简单C语言代码!!!

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

奖学金,思维简化,巧用数组

摘要:解题思路:运用数组进行排序注意事项:在编译器上运行例子是正确的,提交是不知为啥运行错误,求大佬舅救救参考代码:#include<stdio.h>int main(){ int i,j,n,t,k,f;……

奖学金 (C++代码)

摘要:#include <iostream> #include <vector> #include <stack> #include <queue> #include <cstdlib> #inc……

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

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

1106: 奖学金 (二维数组)

摘要:解题思路:将所有信息存放至二维数组并依据总分,语文成绩降序排序,依据学号升序排序注意事项:参考代码:def scholarship_ranking():    # 读取学生数量    n = int(……

奖学金 (C语言代码)

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

奖学金 (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]……