题解 1739: 成绩排序

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

筛选

TMD,坑壁题目!!

摘要:注意事项: 不止一组输入!!不止一组输入!!!                也就是说输入其实是:                 3                xxxx      &nbs

成绩排序-题解(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct data{ char str[101];                       ……

成绩排序(多多指教)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct students{char name[101];int age;i……

成绩排序 题解

摘要:解题思路:这题就是结构体排序,先是成绩,再是姓名,但我们还要考虑年龄。呵呵,这是个坑。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;in……

成绩排序(容器)

摘要:#include<iostream> using namespace std; #include<vector> #include<string> #include<algorithm> c……

成绩排序c语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct student{    char name[200];    int age; ……

成绩排序!!

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int……