主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
xjnotywlq
2024年3月12日 16:45
水王争霸 题解:c语言qsort
P1074
回复 0
|
赞 0
|
浏览 362
#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct node { char name[10000]; char num[10000]; } node; int cmp(const void*a,const void*b) { struct node a1=*(struct node*)a; struct node b1...
ymw1836828452
2020年9月25日 13:47
菜鸟留笔
P1074
回复 0
|
赞 0
|
浏览 8.3k
package king;//操作一模一样,但是通不过 import java.math.BigInteger; import java.math.BigDecimal; import java.util.*; class waterking{ String []name; BigDecimal count[]; Scanner reader=new Scanner(System.in); //诞生,选手数据与名字 &n...
莫小七
2020年4月7日 11:18
1074水王争霸
P1074
回复 0
|
赞 0
|
浏览 8.8k
#include<iostream> #include<vector> #include<string> #include<cstring> #include<algorithm> using namespace std; struct people { string sum; string id; }; bool cmp(people a, people b) { if(a.sum.size()!=b.sum.size()){//比较水贴数量字符串长度,长的排在前 return...
题目
水王争霸
题解数量
3
发布题解
热门题解
1
水王争霸 题解:c语言qsort
2
1074水王争霸
3
菜鸟留笔