上机3.1

该博客详细介绍了使用C++定义一个名为Coordinate的类,用于管理坐标输入、显示和计算平均坐标。通过构造函数设置坐标对数,输入和显示坐标,并计算坐标平均值。示例展示了如何创建和使用此类,以及程序的运行顺序。
摘要由CSDN通过智能技术生成

#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 c(5);
    c.InputCoord();
    c.ShowCoord();
    c.ShowAvgCoord();
    return 0;
    // 执行显示和坐标均值运算
}

//202130310286

构造函数的运行顺序为:先进入main函数,之后进入Coordinate()函数,默认两对坐标,先输入Coordinate construction1 called!,后转到void InputCoord()输入两对坐标,最后调用析构函数。

析构函数的运行顺序为:析构函数在程序执行完Return 0后执行,用于释放分配给对象的内存空间

在main函数中加入以下代码后

Coordinate y(5);

y.InputCoord();

y.ShowCoord();

y.ShowAvgCoord();

return 0;

增加到了五对坐标

运行结果如下

参考链接:https://blog.csdn.net/JJdeAHAO/article/details/127557736

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值