zoukankan      html  css  js  c++  java
  • 1360. 有序分数

    水题。

    struct Fraction
    {
        int up,down;
        bool operator<(const Fraction &W) const
        {
            return up * W.down < W.up * down;
        }
    };
    vector<Fraction> res;
    int n;
    
    int main()
    {
        cin>>n;
    
        res.pb({0,1}),res.pb({1,1});
        for(int i=2;i<=n;i++)
            for(int j=1;j<=i-1;j++)
                if(__gcd(i,j) == 1)
                    res.pb({j,i});
    
        sort(res.begin(),res.end());
    
        for(auto t:res)
            cout<<t.up<<'/'<<t.down<<endl;
        //system("pause");
        return 0;
    }
    
  • 相关阅读:
    sw
    ++1
    test
    为了
    发送邮件
    新建121212
    29012
    pthread_create/join函数
    recv函数学习
    socketpair用法学习
  • 原文地址:https://www.cnblogs.com/fxh0707/p/14832939.html
Copyright © 2011-2022 走看看