题解 1269: 谁拿了最多奖学金

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

筛选

P1002(C++)结构体,自定义排序

摘要:解题思路:定义结构体+结合sort排序+自定义类型排序注意事项:两个获得奖金一致时,按输入顺序输出先输入的参考代码:#include <iostream>#include <algorithm>usi……

面向对象:将每位同学视为一个对象进行操作;

摘要:解题思路:                将每一位同学视为一个对象,对对象进行操作,思路简单;                在判断是否有相同奖学金时,所用方法有些麻烦。(若您有更简单

P1002(结构体)

摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>#include<set>#include<string>#inc……

P1002-题解(C++代码)

摘要:结构体+临时变量搞定~ AC代码: ```cpp #include struct node{ char stname[21]; int avescore; int pin……

P1002-题解(C++代码)

摘要:```cpp #include using namespace std; typedef struct Stu{ char name[20]; int qimo; ……

P1002-题解(C++代码)

摘要:```cpp #include #include "string" #include "algorithm" using namespace std; int main() { ……

P1002 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct student{  char name[1……

P1002 (C++代码)

摘要:#include<iostream> #include<stdio.h> #include<cmath> #include<algorithm> #include<string> using……

P1002 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<algorithm>using namespace std;struct Stude……