// ConsoleApplication4.cpp :定义控制台应用程序的入口点.
//
#include "stdafx.h"
#include
using namespace std;
class cMyRect
{
public:
int m_Length; //长 囧
int m_Width; //宽
bool operator(cMyRect myRect){ return m_Length*m_Width > myRect.m_Length*myRect.m_Width; }
};
int _tmain(int argc,_TCHAR* argv[])
{
cMyRect rect1,rect2;
cout rect2)
cout
