C++程序调试

时间:2014-11-13 10:30:54
【文件属性】:
文件名称:C++程序调试
文件大小:763B
文件格式:CPP
更新时间:2014-11-13 10:30:54
C++ C++程序调试的电子文档 using namespace std; class Rectangle #include"iostream" { public: Rectangle(int xx1=0,int yy1=0,int xx2=0,int yy2=0); int GetX1() { return x1;} int GetY1() { return y1;} int GetX2() { return x2;} int GetY2() { return y2;} int area(); private: int x1,y1,x2,y2; }; Rectangle::Rectangle(int xx1,int yy1,int xx2,int yy2) { x1=xx1; y1=yy1; x2=xx2; y2=yy2; } Rectangle::area() { return (x2-x1)*(y2-y1); } int main() { int x1,x2,y1,y2; cout<<"请输入左下角的两个坐标和右上角的两个坐标:"<>x1>>y1>>x2>>y2; Rectangle r(x1,y1,x2,y2); cout<<"左下角的两个坐标和右上角的两个坐标是:"< 立即下载

网友评论