题解 1106: 奖学金

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

筛选

奖学金 (C++代码)

摘要:解题思路:制作链表存储信息注意事项:多重嵌套if要注意{}的使用参考代码:#include<iostream> using namespace std; struct node { int ……

奖学金-题解(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;……

可以用结构体编写

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct garde { int sum; int xuehao;};int main(){int arr[1000] = { 0 ……

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

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

奖学金 (C++代码)

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