文章
9
粉丝
0
获赞
0
访问
6.3k
#include<stdio.h>
#include<stdlib.h>
struct C{
int gold;//金牌
int model;//奖牌
int people;
float gp;
float jp;//奖牌人均
int number;//国家号
int pm[10];//四种方式的排名
};
int n,m;
void one(struct C x[100]){//金牌总数
int t[10];
for(int i=0;i<n;i++)
t[i]=x[i].gold;
for(int i=0;i<n;i++){
for(int j=0;j<n-1-i;j++){
if(t[j]<t[j+1]){
int p=t[j];
t[j]=t[j+1];
t[j+1]=p;
&nbs...
登录后发布评论
你这代码写的太长了。。。
考试的时候这么写都结束了
C语言建议用qsort来排序