面向对象程序设计上机练习六(类和对象)
Time Limit: 1000MS
Memory Limit: 65536KB
Problem Description
用类成员函数完成5个整型数组元素的输入、从小到大排序、排序后数组元素的输出。
Input
输入5个数组元素。
Output
输出5个数组元素从小到大排序后的结果。(最后一个数后面既没有空格也没有换行)
Example Input
8 9 1 5 4
Example Output
1 4 5 8 9#include <iostream>
using namespace std;
class paixu
{
public:
void setin()
{
for(int i = 0; i < 5; i++)
{
cin >> a[i];
}
}
void display()
{
int i, j, t;
for(i=0; i<=3; i++)
{
for(j=i+1; j<=4; j++)
{
if(a[i]>a[j])
{
t=a[i];
a[i]=a[j];
a[j]=t;
}
}
}
for(i = 0; i <= 3; i++)
{
cout << a[i] << " ";
}
cout << a[4] << endl;
}
private:
int a[5];
};
int main()
{
paixu x;
x.setin();
x.display();
return 0;
}
本文介绍了一个使用面向对象程序设计方法实现的整型数组排序程序。该程序定义了一个名为paixu的类,通过其成员函数setin()读取5个整型数组元素,并通过display()函数实现数组的排序及输出。
2234

被折叠的 条评论
为什么被折叠?



