成绩排序-题解(Java代码) 字符串问题的可以看过来! 摘要:import java.util.Scanner; class Main { public static void main(String[] args) { /** * …… 题解列表 2020年02月15日 0 点赞 0 评论 1114 浏览 评分:0.0
成绩排序-题解(C语言代码) 50%错误的看过来 摘要:```c #include #include #include #include #include struct node{ char name[101]; /*字符会补充一个\0…… 题解列表 2020年02月27日 0 点赞 0 评论 606 浏览 评分:0.0
成绩排序-题解(C语言代码) 摘要: #include #include struct student{ int age; int score; c…… 题解列表 2020年07月04日 0 点赞 0 评论 691 浏览 评分:0.0
成绩排序-题解(C语言代码) 摘要:解题思路:方法一:创建学生类,然后冒泡排序方法二:实现Arrays.Sort的Comparator排序方法注意事项:参考代码:方法一import java.util.Scanner; pub…… 题解列表 2020年08月19日 0 点赞 0 评论 759 浏览 评分:0.0
成绩排序-题解(C语言代码) 摘要:解题思路: 结合结构体与数组 用swap函数替换 达成排序,这里是将小的值排到前面 有些许参考https://blog.dotcpp.com/a…… 题解列表 2020年11月25日 0 点赞 0 评论 569 浏览 评分:0.0
成绩排序!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int…… 题解列表 2022年12月21日 0 点赞 0 评论 278 浏览 评分:0.0
朴实无华的解法,只要你懂结构体,冒泡排序,strcmp函数,就能看得懂。 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>struct student{ char name[101]; int age; …… 题解列表 2021年04月02日 0 点赞 0 评论 753 浏览 评分:0.0
成绩排序(多多指教) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct students{char name[101];int age;i…… 题解列表 2021年05月04日 0 点赞 0 评论 496 浏览 评分:0.0
成绩排序-题解(C语言) 摘要:```c #include #include struct a{ char b[101]; int c; int d; }student[1000],temp; int main…… 题解列表 2021年09月11日 0 点赞 0 评论 484 浏览 评分:0.0
1739: 成绩排序 摘要:结构体的排序,自己写一个 sort 函数的比较算法就好了。#include<bits/stdc++.h> using namespace std; struct student{ s…… 题解列表 2021年12月18日 0 点赞 0 评论 512 浏览 评分:0.0