题解 2918: 成绩排序

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

筛选

成绩排序(python匿名函数解法)

摘要:解题思路:思路不难,python创建一个列表存储姓名和成绩,然后再将所有人的成绩存储到一个列表当中,直接用sort函数搭配lambda匿名函数对成绩和名字的字典序进行排序,再用for循环一一输出即可注……

编写题解 2918: 成绩排序

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args)  ……

无聊的星期六

摘要:#include<stdio.h>  #include<stdlib.h> #include<string.h> typedef struct{ char name[20]; int c……

编写题解 2918: 成绩排序(sort)

摘要:解题思路:注意事项:参考代码:#include <iostream>#include<algorithm>using namespace std;// 定义学生结构体,包含姓名(字符数组形式,最多容纳……

成绩排序(用结构体来做)

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

c语言小白写法,用struct

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

成绩排序——C语言

摘要://C语言融合部分c++头文件,提交格式为c++ #include<stdio.h> #include<string.h> #include<stdlib.h> struct S { ch……

题解 2918: 成绩排序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){   int a;   char b[20][20];   int c[20]……

利用sort巧妙解。

摘要:解题思路:    利用sort解题注意事项:    注意sort的用法参考代码:#include<bits/stdc++.h> using namespace std; typedef struc……