#include<iostream>
using namespace std;
class Coordinate {
public:
Coordinate()
{
times = 2;
cout << "Coordinate construction1 called!" << endl;
}
Coordinate(int times1)
{
times = times1;
cout << "Coordinate construction2 called!" << endl;
}
~Coordinate()
{
cout << "Coordinate destruction called!" << endl;
}
void InputCoord()
{
for (int i = 0; i < times; i++)
{
cout << "Please Input x;" << endl;
cin >> Coord[i][1];
cout << "Please Input y:" << endl;
cin >> Coord[i][2];
}
}
void ShowCoord()
{
cout << "The coord is:" << endl;
for (int i = 0; i < times; i++)
{
cout << "(" << Coord[i][1] << "," << Coord[i][2] << ")" << endl;
}
}
void ShowAvgCoord()
{
float avgx = 0;
float avgy = 0;
for (int i = 0; i < times; i++)
{
avgx = avgx + Coord[i][1];
avgy = avgy + Coord[i][2];
}avgx = avgx / times;
avgy = avgy / times;
cout << "The AVG coord is:" << endl;
cout << "(" << avgx << "," << avgy << ")" << endl;
}
private:
float Coord[100][100];
int times;
};
int main()
{ Coordinate y(5);
y.InputCoord();
y.ShowCoord();
y.ShowAvgCoord();
return 0;
}
相关文章
- 02-23【C++学习之路】派生类的构造函数(三)
- 02-23C++ sizeof操作符的用法和strlen函数的区别
- 02-23构造函数的prototype和constructor属性
- 02-23C++中析构函数的作用,
- 02-23C++中的函数指针和指针函数
- 02-23virtual 修饰符与继承对析构函数的影响(C++)
- 02-23c++单例模式为什么不在析构函数中释放静态的单例对象(转)
- 02-23c++构造函数成员初始化中赋值和初始化列表两种方式的区别
- 02-23Effective C++ .12 复制对象-拷贝构造函数的编写
- 02-23《Effective C++》读书笔记 被你忽略的关于构造析构赋值