1.如何求多个int的最大值,2.git如何将master推到其他分支

1.如何求多个int的最大值

    template
    static int max(Ts... args)
    {
        const int size = sizeof...(args);
        int res[size] = {args...};
        int r = 0;
        for(int d : res) {
            r = qMax(r, d);
        }
        return r;
    }

使用

qDebug() << __LINE__ << max(1, 2, 4, 3);//result 4

2.git如何将master推到其他分支

 git remote add origin_b https://xxxx.git
 git push origin_b master

你可能感兴趣的:(数学建模,java,算法)