题解 2919: 奖学金

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

筛选

编写题解 2919: 奖学金

摘要:解题思路:定义结构,然后是输入题目要求,然后是根据要求进行判断,然后是采用冒泡法解决排序问题,最后是输出前五个.注意事项:一定要注意等于号和双等于号在c语言当中的区别参考代码:#include<std……

  编写题解 2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student {    int id;    int yu;    int shu;    int Eng;};int ……

2919: 奖学金(c++)

摘要:```cpp #include using namespace std; typedef struct Stu { int hao;//学号 int a;//语文成绩 int b;/……

2919: 奖学金

摘要:```cpp #include #include using namespace std; struct student { int id,Chinese,score; }stu……

编写题解 2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { int id; int yw, sx, yy; int sum;};struct student a[……

奖学金(结构体实在是太好用啦)

摘要:解题思路:注意事项:注意只有前五名才有奖学金参考代码:#include<stdio.h> struct student  {     int sno;     int Chinese;   ……

2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { int xh;     int yv;  ……

2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{   int xh,zf,a,b,c;} s[1000……