C++实践数组作数据成员的参考

时间:2022-02-19 22:38:28

【项目 - 数组数据成员】下面是设计好的一个工资类(Salary):

?
1
2
3
4
5
6
7
8
9
10
11
class Salary
{
public:
  void set_salarys( );//输入职工工资(输入-1标志着工资输入结束),工资保存到salary数组中,实际人数保存到number中;
  void add_salarys(int x); //给每个人涨x元工资
  void sort_salarys(); //对工资由大到小排序
  void show_salarys( ); //显示工资信息
private:
  double salarys[50]; //多人的工资
  int number; //实际人数
};

(1)实现Salary类中的成员函数,在main函数定义Salary类的对象,输入工资,再给每个人涨500元工资,排序后工资数据,然后输出结果。

(2)手工输入工资?!太让人不能忍受了。现给出包含了不足500个职工工资的文件salary.txt(下载),增加一个成员函数,用于从文件中读出数据,再增加一个成员函数,将排序后结果保存到一个文件中。编写main函数,测试你扩充的功能。

(3)用多文件的方式组织最后的程序。

参考解答:

(1)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using namespace std;
class Salary
{
public:
  void set_salarys( );   //输入工资
  void add_salarys(int x); //涨工资
  void sort_salarys();   //排序工资
  void show_salarys( );  //显示工资
private:
  double salarys[50]; //工资
  int number;     //实际人数
};
void Salary::set_salarys( )
{
  int x,i=0;
  cin>>x;
  while(x>0)
  {
    salarys[i]=x; //工资保存到数组数据成员中
    ++i;
    cin>>x;
  }
  number=i;  //number是数据成员,记录下职工人数
}
void Salary::add_salarys(int x)
{
  int i;
  for (i=0;i<number;i++)
    salarys[i]+=x;
}
void Salary::sort_salarys()
{
  int i,j;
  double t;
  for (i=0;i<number-1;i++)
    for(j=0;j<number-i-1;j++)
      if (salarys[j]<salarys[j+1])
      {
        t=salarys[j];
        salarys[j]=salarys[j+1];
        salarys[j+1]=t;
      }
}
void Salary::show_salarys( )
{
  int i;
  for (i=0;i<number;i++)
    cout<<salarys[i]<<" ";
}
int main( )
{
  Salary s;
  s.set_salarys( );
  s.add_salarys(500);
  s.sort_salarys();
  s.show_salarys( );
  return 0;
}

(2)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;
const int N=500;
class Salary
{
public:
  void read_data( );
  void write_data();
  void add_salarys(int x);
  void sort_salarys();
  void show_salarys( );
private:
  double salarys[N]; //工资, 用指针更好
  int number;    //人数
};
void Salary::read_data( )
{
  int i;
  ifstream infile("salary.txt",ios::in);  //以输入的方式打开文件
  if(!infile)         //测试是否成功打开
  {
    cerr<<"open error!"<<endl;
    exit(1);
  }
  i=0;
  while(infile>>salarys[i])
    i++;
  number=i;
  infile.close();
}
void Salary::write_data( )
{
  int i;
  ofstream outfile("salary_ordered.txt",ios::out);  //以输入的方式打开文件
  if(!outfile)         //测试是否成功打开
  {
    cerr<<"open error!"<<endl;
    exit(1);
  }
  for(i=0; i<number; ++i)
  {
    outfile<<salarys[i]<<endl;
  }
  outfile.close();
}
void Salary::add_salarys(int x)
{
  int i;
  for (i=0; i<number; i++)
    salarys[i]+=x;
}
void Salary::sort_salarys()
{
  int i,j;
  double t;
  for (i=0; i<number-1; i++)
    for(j=0; j<number-i-1; j++)
      if (salarys[j]<salarys[j+1])
      {
        t=salarys[j];
        salarys[j]=salarys[j+1];
        salarys[j+1]=t;
      }
}
void Salary::show_salarys( )
{
  int i;
  for (i=0; i<number; i++)
    cout<<salarys[i]<<"\t";
}
int main( )
{
  Salary s;
  s.read_data( );
  s.add_salarys(500);
  s.sort_salarys();
  s.write_data( );
  s.show_salarys( );
  return 0;
}

(3)(略)

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接

原文链接:https://blog.csdn.net/sxhelijian/article/details/51165194