2919: 奖学金(sort和自定义降序函数) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef struct student { int score; int ch…… 题解列表 2024年11月20日 1 点赞 0 评论 518 浏览 评分:9.9
重写compare方法 解题思路:注意事项:参考代码:importjava.util.Arrays;importjava.util.Comparator;importjava.util.Scanner;classStu{intid;intchinese;intmath;intenglish;intsum;publicStu( 题解列表 2024年05月01日 0 点赞 0 评论 654 浏览 评分:0.0
题解 2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; int b[301]; int c[301]; int d[301]; …… 题解列表 2024年04月27日 0 点赞 0 评论 498 浏览 评分:0.0
奖学金(结构体排序) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cstring>using namespace std;struct Stu{…… 题解列表 2024年04月11日 0 点赞 0 评论 583 浏览 评分:9.9
奖学金,结构体,冒泡排序,有注释 #includetypedefstructdate{intnumber;intchin;intmath;inteng;inttot;}Date;intmain(){intn,i,j;scanf("%d",&n);//输入学生个数Datestu[n];//n个学生的数据Datetemp;//用于交换数据 题解列表 2024年03月06日 0 点赞 0 评论 549 浏览 评分:9.9
2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ int xh,zf,a,b,c;} s[1000…… 题解列表 2023年12月16日 0 点赞 0 评论 791 浏览 评分:0.0
2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { int xh; int yv; …… 题解列表 2023年12月09日 0 点赞 0 评论 451 浏览 评分:9.9
奖学金(结构体实在是太好用啦) 摘要:解题思路:注意事项:注意只有前五名才有奖学金参考代码:#include<stdio.h> struct student { int sno; int Chinese; …… 题解列表 2023年10月10日 0 点赞 0 评论 477 浏览 评分:0.0
编写题解 2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { int id; int yw, sx, yy; int sum;};struct student a[…… 题解列表 2023年06月02日 0 点赞 0 评论 543 浏览 评分:0.0
奖学金——做题思路,优化,比较,反思 摘要:- 分析 > 想用三个数组,把他们存起来,然后 cmp sort 排序 - 第一次 WA ```c++ #include using namespace std…… 题解列表 2023年03月19日 0 点赞 0 评论 812 浏览 评分:9.9