一道C++编程题,求高手解决下~

题目:某大学开田径运动会,现有12名选手参加 100米 比赛,对应的运动员号及成绩如表所示,请按照成绩排名并输出,要求每一行输出名次、运动员号及成绩,参见程序运行结果。要求用冒泡法排序。
运动员号 成绩(秒) 运动员号 成绩(秒)
001 13.6 031 14.9
002 14.8 036 12.6
010 12.0 037 13.4
011 12.7 102 12.5
023 15.6 325 15.3
025 13.4 438 12.7
程序运行结果:
名次 编号 成绩
1 010 12
2 102 12.5
3 036 12.6
4 011 12.7
5 438 12.7
6 025 13.4
7 037 13.4
8 001 13.6
9 002 14.8
10 031 14.9
11 325 15.3
12 023 15.6

希望高手能给出能运行的完整代码,在下想学习下~

完全符合你的要求,哪不懂随时hi我~ok?
#include<iostream>
#include<stdio.h>
using namespace std;
#define NUM 12
struct Ath
{
int no;//名次
char s[3];//编号
float perf;//成绩
}ath[NUM];

void seque(Ath a[NUM])//冒泡排序函数
{
Ath tmp;
int n=12;
for(int k=0;k<12;k++)//计数用
{

for(int j=0;j<11-k;j++)
if(a[j].perf>a[j+1].perf)
{
tmp=a[j+1];
a[j+1]=a[j];
a[j]=tmp;
}
a[n-1].no=n;//给每个运动员排定名次
n--;
}
//return a[NUM];
}

void main()
{
for(int i=0;i<12;i++)//输入运动员信息
{
cout<<"请输入第"<<i+1<<"运动员的信息:(编号 成绩)"<<endl;
cin>>ath[i].s>>ath[i].perf;
}
seque(ath);
cout<<"名次\t"<<"编号\t"<<"成绩\t"<<endl;//排序后输出
for(int m=0;m<12;m++)
cout<<ath[m].no<<"\t"<<ath[m].s<<"\t"<<ath[m].perf<<endl;
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2009-12-25
#include <iostream>
#include <iomanip>
using namespace std;

struct Players
{
int num;
float score;
};

int main()
{
Players member[12] = {{001, 13.6}, {002, 14.8},
{010, 12.0}, {011, 12.7},
{023, 15.6}, {025, 13.4},
{031, 14.9}, {036, 12.6},
{037, 13.4}, {102, 12.5},
{325, 15.3}, {438, 12.7}
};
int temp_N;
float temp_S;

//Bubble Sort
for(int i=0; i<12; ++i)
{
for(int j=0; j<12-i; ++j)
{
if(member[j].score > member[j+1].score)
{
temp_N = member[j+1].num;
temp_S = member[j+1].score;
member[j+1].num = member[j].num;
member[j+1].score = member[j].score;
member[j].num = temp_N;
member[j].score = temp_S;
}
}
}

cout << setiosflags(ios::left) << setw(6) << "名次" << setw(6) << "号码" << setw(6) << "成绩" << endl;
for(int i=0; i<12; ++i)
{
cout << setiosflags(ios::left) << setiosflags(ios::fixed) << setprecision(1)
<< setw(6) << setw(6) << i+1 << setw(6) << member[i].num << setw(6) << member[i].score << endl;
}
}
第2个回答  2009-12-25
class Sporter
{
friend class Comption;
public:
int number;
float sorce;

Comption(int num,float sor)
{

}
};
class Comption
{
public:
Sporter spo[12];
Sporter temp;

void Init()
{
spo[0].Comption(001,13.6);
spo[1].Comption(002,14.8);
spo[2].Comption(010,12.0);
spo[3].Comption(011,12.7);
spo[4].Comption(023,15.6);
spo[5].Comption(025,13.4);
spo[6].Comption(031,14.9);
spo[7].Comption(036,12.6);
spo[8].Comption(037,13.4);
spo[9].Comption(102,12.5);
spo[10].Comption(325,15.3);
spo[11].Comption(438,12.7);

}

void Swap(Sporter &sp1,Spoter &sp2)
{
temp.number=sp1.number;
temp.sorce=sp1.sorce;

sp1.number=sp2.number;
sp1.sorce=sp2.sorce;

sp2.number=temp.number;
sp2.sorce=sp2.sorce;
}

void PaiXu()
{
for(int i=0;i<12;i++)
{
for(int j=i+1;j<12;j++)
{
if(spo[i]>spo[j])
this.Swap(spo[i],spo[j])
}
}
};

void Show()
{
for(int i=0;i<12;i++)
{
cout>>"NO.">>i+1>>"\tNumbers:">>spo[i].number>>"\tTime:">>spo[i].sorce>>end;
}
}

};

void main()
{
Competion com;
com.Init();
com.PaiXu();
com.Show();
}

//正在安装VS2008
//在记事本里面打的 所以没有调试
//但是逻辑应该没有问题
第3个回答  2009-12-26
#include <iostream>
#include <string>
struct Player
{
string num ;
float score;
};

void Sort(Player a[]);

int main()
{
Player stud[6]; //定义结构体数组stud,有12个元素;

for(int i=0;i<6;++i) //给数组元素赋值
{
cout<<" \n运动员号:";
cin>>stud[i].num;
cout<<" \n成绩:";
cin>>stud[i].score;

}

Sort(stud);
int i=6 ;
for(int j=0;j<6;++j)
{
cout<<"\n第"<<i<<"名是:"<<stud[j].num<<" 成绩为:"<<stud[j].score;
i--;
}

return 0;
}

void Sort(Player a[])
{
Player temp;
int i,j;
for(i=0;i<6;i++)
for(j=0;j<6;++j)
{ if(a[j].score<a[j+1].score)
{
temp=a[j+1];
a[j+1]=a[j];
a[j]=temp;
}
}

}

C++编程题,高手帮下忙。。。
高手是需要高分来召唤的:1.include<stdio.h> void main(){ int n,i;float s=0;scanf("%d",&n);for(i=0;i<n;i++)s += (i%2==0) ? 1\/((float)(1+i*3)):(-1)\/((float)(1+i*3));printf("%.3f\\n",s);getch();} 2.include<stdio.h> void main(){ int n,i;...

C++编程的问题,求高手解答一下 一、题目:数据统计、平均值、方差 二...
p[z]=(1.0\/n*(pow(k[z],2)));这里是1.0,不然直接用1除的话,小数全部都会转变成0,就得不到答案了还有最重要一点,数组是从0开始到n-1,不是从1开始到n

c++编程题,求大神解答。
C++代码如下:include <bits\/stdc++.h> \/\/ C++万能头文件 using namespace std;using tri = tuple<double, int, int>; \/\/ 发生碰撞的时间和机器人编号 int main() { int n, k;cin >> n;k = n; \/\/ 剩下机器人个数 int x[n + 1], v[n + 1]; \/\/ 初始位置和速度 for (int...

一道C++编程题目,求大神帮忙,有没有简单点的算法,求程序!!答得好可以...
1.对于第八列,和计算完成后,不管找没找到值,寻找当前列下一行(即i+1),无需进入下一列;2.对于非第八列,有两种情况:a.和大于等于最大值10(如果矩阵中有零值存在,此处应为大于10),不满足路径条件,没必要进入下一列计算,进入当前列下一行进行计算(即i+1);b.满足条件,则进入下一...

c++ OOP题目。求大神。求详解。
下面是测试代码:include <iostream>using namespace std;static int s_count = 0;class AB {public: AB(int i=0) : m(i) {s_count++;} ~AB() {;} private: int m; };int main(int argc, char const *argv[]){ AB a(4), b[3], *p[2]; cout << s...

C++ 编程问题、求大神解答
第一题:#include<iostream> include<cstdlib> using namespace std;int main(){ double a,b,c,s,v;cout<<"请输入立方体的三条边长,用空格隔开,按ENTER键结束输入:";cin>>a>>b>>c;s=2*(a*b+a*c+b*c);v=a*b*c;cout<<"立方体的三条边为:a="<<a<<" "<<"b="<<b<<" ...

请问大家这道C++编程题怎么做?求帮忙
先将输入的数保存到数组,然后遍历数字,判断相邻数字是否相同即可 使用一个变量记录当前是否处于数字连续的状态,用于输出中括号 一个小技巧是给数组多分配一个位置并将其置为-1,方便判断数组最后一个数 C++代码和运行结果如下:输出符合样例,望采纳~附源码链接:判断连续数字 ...

C++编程题(高手请进)
请输入该纸厚度!"<<endl;cin>>x;for(int i=1;y<8844.43;i++){ y=2*i*x;} cout<<"需要对折次数如下:"<<endl;cout<

编程高手帮我解决个小问题吧,谢谢啦、是作业题,用c++语言编写
第一题:include <iostream> using namespace std;int main (){ int a[10][10];int n,i;a[0][0]=1;for (n=1;n<10;n++){ for (i=0;i<=n;i++){ if ((i==0)||(i==n))a[n][0]=a[n][n]=1;else { a[n][i]=a[n-1][i-1]+a[n-1][i];} } } for (...

新手用c++编成一元二次方程问题,求帮助!
>> a >> b >> c;Equation equation(a, b, c);equation.calculateRoots();return 0;} 通过上述代码,你可以输入a、b、c的值,程序会计算并输出一元二次方程的根。如果方程没有实数根,则会输出 "No real roots." 提示信息。希望这个示例能帮助新手理解和解决C++编程中的一个基本数学问题。

相似回答