矩形类定义

/*
* Copyright (c)2013, 烟台大学计算机与控制学院学生
* All rightsreserved.
* 文件名称: array.cpp
* 作    者:   李中意
* 完成日期:2014 年8月 5 日
* 版本号: v1.0
* 输入描述:无
*/

#include 

using namespace std;

class Rectangle
{
    public:
    Rectangle()
    {
        x1=0;
        x2=0;
        y1=0;
        y2=0;
    }

    Rectangle(double a1,double b1,double a2,double b2)
    {
        x1=a1;
        y1=b1;
        x2=a2;
        y2=b2;
    }
    void input()
    {
        cout<<"请输入矩形左下角和右上角顶点的坐标:"<>x1>>y1>>x2>>y2;
    }
    void output()
    {
        cout<<"该矩形的面积为:"<<((x2-x1)*(y2-y1))<

 

 

 

矩形类定义_第1张图片

你可能感兴趣的:(矩形类定义)