定义一个描述人民币的类,用成员函数重载前置"++"运算符和后置"++"运算符,以实现加一分人民币的目的,运算后返回对象值,以便继续参加运算.
#include<iostream.h>
class Money{
    float Dollar,Cent;
public:
    Money(float x=0,float y=0)
    {
        Dollar=x;Cent=y;
        if(y>100){Cent-=100;Dollar++;}
    }
    void show(){cout<<Dollar<<'\t'<<Cent<<'\n';}
    Money operator ++ ()
    {
        Cent++;
        if(Cent>=100){Dollar++;Cent-=100;}
        return *this;
    }
    Money operator ++ (int )
    {
        tl=*this;
        Cent++;
        if(Cent>=100){Dollar++;Cent-=100;}
        return tl;
    }
};

void main(void)
{
    Money c1(100,90),c2(200,50),c3,c4;
    c3=c1++;c4=++c2;
    c1.show();c2.show();c3.show();c4.show();
}
请高手帮我看看,错在哪里?谢谢!