题解 | #长方形的关系#

长方形的关系

https://www.nowcoder.com/practice/6b099f3a8e3745b592203f14e3954411

#include<bits/stdc++.h>
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;
		}
		// write your code here......
		string cancover(rectangle a)
		{
			if(this->length>this->width)
			{
				if(a.length>a.width)
				{
					if((this->length>=a.length)&&(this->width>=a.width))
					return "yes";
					else
					return "no";
				}
				else 
				{
					if((this->length>=a.width)&&(this->width>=a.length))
					return "yes";
					else
					return "no";
				}
			}
			else 
			{
				if(a.length>a.width)
				{
					if((this->width>=a.length)&&(this->length>=a.width))
					return "yes";
					else
					return "no";
				}
				else
				{
					if((this->width>=a.width)&&(this->length>=a.length))
					return "yes";
					else
					return "no";
				}
			}
		}
};
int main(){
	int l1,w1,l2,w2;
	cin>>l1>>w1>>l2>>w2;
	rectangle a,b;
	a.set(l1,w1);
	b.set(l2,w2);
	cout<<a.cancover(b);
	return 0;
}

全部评论

相关推荐

xtu大迫杰:偶遇校友,祝校友offer打牌
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务