鱼C论坛

 找回密码
 立即注册
查看: 2550|回复: 1

[已解决]帮忙看下哪里错了

[复制链接]
发表于 2015-12-28 22:02:24 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
        #include<iostream.h>
        #include<math.h>
        class Rational
        {
        public:
                Rational(int u=0,int d=1)
                {
                        up=u;
                        down=d;
                }
                Rational(double a);
                operator double();
                void setval();
                void showNnomal();
                friend Rational operator+(Rational &r1);
                friend Rational operator*(Rational &r1);
                friend ostream& operator<<(ostream&,Rational&);
        private:
                int up;
                int down;
                int Maxdivisor(int x,int y) 
                {
                        int z=x%y;
                        while(z)
                        {x=y;
                        y=z;
                        z=x%y;
                        }
                        return y;
                }
                int Minmultiple(int x,int y)
                {
                        int p=Maxdivisor(x,y);
                        int z=x*y/p;
                        return z;
                }
        };
        Rational Rational::Rational(double a)
        {
                int a1=(int)a,count=0;
                double a2=a-a1;
                while(a2!=0)
                {
                        count=count+1;
                        a=10*a2;
                        a1=(int)a;
                        a2=a-a1;
                }
                double b=pow(10,count);
                a=a*b;
                int c=(int)a;
                int g=Maxdivisor(c,(int)b);
                up=c/g;
                down=(int)b/g;
        }
        Rational::operator double()
        {
                double x;
                int u=(double)up;
                int d=(double)down;
                x=u/d;
                return x;
        }
        void Rational::setval()
        {
                cin>>up;
                cin>>down;
        }
        void Rational::showNnomal()
        {
                int g,u,d;
                g=Maxdivisor(up,down);
                u=up/g;
                d=down/g;
                cout<<u<<"/"<<d<<endl;
        }
        Rational Rational::operator+(Rational &r1)
        {
                int i=this->down*r1.down;
                int r=this-> up*r1.down+down*r1.up;
            int d=Maxdivisor(r,i);
                return Rational(r/d,i/d);
        }
        Rational Rational::operator*(Rational &r1)
        {
                int i=this->down*r1.down;
                int r=this-> up*r1.up;
                int d=Maxdivisor(r,i);
                return Rational(r/d,i/d);
        }
        ostream& operator<<(ostream& output,Rational&c);
        {
                output<<c.up<<"/"<<c.down<<endl;
        }
        int main()
        {
                Rational r1(4,14),r2(5,8),r3,r4;
                cout<<"the r1 is:";
                r1.showNomal();
                cout<<"the r2 is:";
                r2.showNomal();
                r3=r1*r2;
                cout<<"the r1*r2 is:"<<r3<<endl;
                r4=r1+r2;
                cout<<"the r1+r2 is:"<<r4<<endl;
                r1.setval();
                r2.setval();
                r4=r1+r2;
                cout<<"the r1+r2 is:"<<r4<<endl;
                double a;
                cout<<"输入一个实数";
                cin>>a;
                r4=r1+Rational(a);
                cout<<"the r1 is:"<<r1<<endl;
                cout<<"the r1+"<<a<<"is:"<<r4;
                a=r4;
                cout<<"="<<a<<endl;
                return 0;
        }
最佳答案
2016-1-10 19:07:58
Rational Rational::Rational(double a);
不能在构造函数上返回类型!!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2016-1-10 19:07:58 | 显示全部楼层    本楼为最佳答案   
Rational Rational::Rational(double a);
不能在构造函数上返回类型!!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 18:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表