12週目のプロジェクトでプログラムを読むと、これらのプログラムの実行結果を書き出してください(4)

631 ワード

/*copyright(c)2016.         
 * All rights reserved,
 *     :text.Cpp
 *   :   
 *     :2016 5 11 
 *    :vc++6.0
 *
 *     :             
 */
#include<iostream>
using namespace std;
class Pair
{
    int m;
    int n;
public:
    Pair(int i,int j):m(i),n(j){}
    bool operator>(Pair p)const;
};
bool Pair::operator>(Pair p)const
{
    if(m!=p.m)
        return m>p.m;
    return n>p.n;
}
int main()
{
    Pair p1(3,4),p2(4,3),p3(4,5);
    cout<<(p1>p2)<<(p2>p1)<<(p2>p3)<<(p3>p2);
    return 0;
}

実行結果:
0101(サイズを比較すると、正しくは1、エラーは0)