编写题解 2919: 奖学金
摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { int id; int yu; int shu; int Eng;};int ……
奖学金,结构体,冒泡排序,有注释
摘要:#include
typedef struct date{
int number;
int chin;
int math;
int eng;
int tot;
}Date;……
2919: 奖学金(c++)
摘要:```cpp
#include
using namespace std;
typedef struct Stu {
int hao;//学号
int a;//语文成绩
int b;/……
奖学金——做题思路,优化,比较,反思
摘要:- 分析
> 想用三个数组,把他们存起来,然后 cmp sort 排序
- 第一次 WA
```c++
#include
using namespace std……
2919: 奖学金(sort和自定义降序函数)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef struct student { int score; int ch……
编写题解 2919: 奖学金
摘要:解题思路:定义结构,然后是输入题目要求,然后是根据要求进行判断,然后是采用冒泡法解决排序问题,最后是输出前五个.注意事项:一定要注意等于号和双等于号在c语言当中的区别参考代码:#include<std……
奖学金(结构体排序)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cstring>using namespace std;struct Stu{……
题解 2919: 奖学金
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; int b[301]; int c[301]; int d[301]; ……