免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2056 | 回复: 2
打印 上一主题 下一主题

忙了一个晚上终于写好了一个C++程序,得瑟一下。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-09-19 11:55 |只看该作者 |倒序浏览
class Fract{
public:
    Fract(int den, int mol) : m_den(den), m_mol(mol) {};
    Fract(const Fract& rhs) : m_den(rhs.m_den), m_mol(rhs.m_mol) {};

    Fract& operator+=(const Fract& rhs)
    {
        m_mol = m_mol * rhs.m_den + m_den * rhs.m_mol;
        m_den = m_den * rhs.m_den;

        int agcd = gcd(m_mol, m_den);
        m_mol /= agcd;
        m_den /= agcd;

        return *this;
    }

    void print(std:stream& ostr) const
    {
        ostr<<m_mol<<"/"<<m_den;
    }

    static int gcd(int m, int n)
    {
        for(int r = m % n; r != 0; r = m % n)
        {
            m = n;
            n = r;
        }
        return n;
    }
private:
    int m_den, m_mol;
};

Fract operator+(const Fract& lhs, const Fract& rhs)
{
    Fract res(lhs);
    res += rhs;
    return res;
}

std:stream& operator<<(std:stream& _Ostr, const Fract& rhs)
{
    rhs.print(_Ostr);
    return _Ostr;
}

int main()
{
    Fract a(3, 1);
    Fract b(6, 1);
    Fract c = a + b;

    std::cout<<a<<" + "<<b<<" = "<<c<<std::endl;

论坛徽章:
2
天蝎座
日期:2014-03-28 10:18:052015年亚洲杯之乌兹别克斯坦
日期:2015-02-10 11:32:25
2 [报告]
发表于 2011-09-19 12:06 |只看该作者
我也来得瑟下,当年写了好几天的C++程序

  1. #include <iostream>
  2. using namesapce std;

  3. int main()
  4. {
  5.     cout << "Hello, World!" << endl;
  6.     return 0;
  7. }
复制代码

论坛徽章:
0
3 [报告]
发表于 2011-09-19 12:21 |只看该作者
我也来得瑟下,当年写了好几天的C++程序
txdgtwpv 发表于 2011-09-19 12:06
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP