给出两个长方形的长和宽,实现长方形类的一个比较面积大小的方法,判定哪个面积大。
输入描述:
输入4个整数,前两个表示第一个长方形的长和宽,后两个表示第二个长方形的长和宽。
输出描述:
如果前者面积大,输出1,否则输出0。
示例1
输入
4 3 2 1
输出
1
加载中...
#include
using namespace std; class rectangle{ private: int length,width; public: void set(int x,int y){ length=x; width=y; } int getlength(){ return length; } int getwidth(){ return width; } int area(){ return length*width; } void compare(rectangle a){ // write your code here...... } }; int main(){ int l1,w1,l2,w2; cin>>l1>>w1>>l2>>w2; rectangle a,b; a.set(l1,w1); b.set(l2,w2); a.compare(b); return 0; }
4 3 2 1
1