题目
编写一个程序,输入3个学生的英语和计算机成绩,并按总分从高到低排序(要求设计一个学生类Student)。
问题描述
本题要求我们先分别输入三位学生的英语成绩和计算机成绩,然后再分别计算三位同学的总分,最后再给三位同学的总分按高低顺序排序。
问题分析
对于本题我们首先要设计一个学生类Student,接着需要我们分别输入三位同学的各科成绩,则可以用数组来储存每位学生的成绩,除此之外,我们还需编写一个函数用来排序,把学生的总分按高低顺序排序后,输出这三位同学的总分。
设计思想:
对于本题,首先要设计一个学生类Student,英语成绩e和计算机成绩c作为该类的私有成员,接着,我定义了一个函数bubble,其中套用了两个for循环并运用了值传递等方法从而完成数据的大小排列。在主函数中,用数组来储存学生的成绩,经过计算,最后按学生成绩总分的高低顺序输出。
设计表示
源代码
#include "stdafx.h"
#include <iostream>
using namespace std;
class Student{ //定义一个学生类Student
public:
Student(int English=0, int Computer=0)
{
e = English;
c = Computer;
}
Student(Student&S);
int getE(){ return e; }
int getC(){ return c; }
private:
int e, c;
};
Student::Student(Student&S)
{
e = S.e;
c = S.c;
}
void bubble(int *a, int n) //把学生成绩从高到低排序
{
int i, j, temp;
for (i = 0; i < n - 1; i++)
{
for (j = i + 1; j < n; j++)
{
if (a[i] < a[j])
{
temp = a[i]; //用值传递的方法进行排序
a[i] = a[j];
a[j] = temp;
}
}
}
cout << "这三位同学的总分从高至低排序为:";
for (i = 0; i < n; i++)
{
cout <<a[i] << " ";
}
cout << endl;
}
int _tmain(int argc, _TCHAR* argv[])
{
int e[3];
int c[3];
int t[3];
Student thee(e[3]);
Student thec(c[3]);
int i, j, k;
cout << "请分别输入三位同学的英语成绩:";
for (int i = 0; i < 3; i++)
{
cin >> e[i];
}
cout << "请分别输入三位同学的计算机成绩:";
for (int j = 0; j < 3; j++)
{
cin >> c[j];
}
for (int k = 0; k < 3; k++) //学生总分
{
t[k] = e[k] + c[k];
}
bubble(t, 3);
return 0;
}
测试数据及运行结果
转载:https://blog.csdn.net/weixin_44387644/article/details/104862985
查看评论