题解 1739: 成绩排序

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

筛选

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

摘要:解题思路:方法一:创建学生类,然后冒泡排序方法二:实现Arrays.Sort的Comparator排序方法注意事项:参考代码:方法一import java.util.Scanner; pub……

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

摘要:解题思路:    结合结构体与数组              用swap函数替换 达成排序,这里是将小的值排到前面             有些许参考https://blog.dotcpp.com/a……

成绩排序!!

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

成绩排序(多多指教)

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

1739: 成绩排序

摘要:结构体的排序,自己写一个 sort 函数的比较算法就好了。#include<bits/stdc++.h> using namespace std; struct student{     s……