朴实无华的解法,只要你懂结构体,冒泡排序,strcmp函数,就能看得懂。
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>struct student{ char name[101]; int age; ……
1739: 成绩排序
摘要:结构体的排序,自己写一个 sort 函数的比较算法就好了。#include<bits/stdc++.h>
using namespace std;
struct student{
s……
1739: 成绩排序 (坑很多)
摘要:解题思路:注意事项:1.成绩小的在前 2.名字小的在前(比较的整个字符串不是首字母) 3.年龄小的在前参考代码:#include<stdio.h> typedef struct{ char a[10……
成绩排序-题解(C语言代码)
摘要: #include
#include
struct student{
int age;
int score;
c……
编写题解 1739: 成绩排序 结构体
摘要:参考代码:#include<iostream>
#include<string>
#include<algorithm>
#include<stdio.h>
using namespace s……
成绩排序-题解(C语言代码) 50%错误的看过来
摘要:```c
#include
#include
#include
#include
#include
struct node{
char name[101]; /*字符会补充一个\0……
成绩排序-题解(C语言代码)
摘要:解题思路: 结合结构体与数组 用swap函数替换 达成排序,这里是将小的值排到前面 有些许参考https://blog.dotcpp.com/a……
成绩排序(多多指教)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct students{char name[101];int age;i……