Home >Backend Development >PHP Tutorial >求帮忙算一下,谢谢!

求帮忙算一下,谢谢!

WBOY
WBOYOriginal
2016-06-20 12:42:29926browse

传销机构分级营销程序。输入投资金额、收益率(8%到18%之间),投资月份,自动计算出每个级别应该拿到的钱数。规则中第一层人员拿收益率,第二层人员拿提成(提成系数为五万以下1.3%、20万以下1.4%,50万以下1.55%,80万以下1.7%,100万以下1.8%,100万以上2%)。 剩余分级人员所拿奖金总和为第二层人员的提成,但奖金系数差比为0.5%。

算不明白了, 求帮助,谢谢。


回复讨论(解决方案)

/**
     * @param $fee  投资金额
     * @param $yield    收益率
     * @return array  每级可获取的金钱:array('level' => 'money',...)
     */
    public static function distribution($fee, $yield)
    {
        $money = array();
        $total = 10; //分销最低等级:总共有多少个分销级

        $money[1] = $fee * $yield;

        if($fee         {
            $royalty = 1.3; //百分号
        }
        elseif($fee         {
            $royalty = 1.4;
        }
        elseif($fee         {
            $royalty = 1.55;
        }
        elseif($fee         {
            $royalty = 1.7;
        }
        elseif($fee         {
            $royalty = 1.8;
        }
        else
        {
            $royalty = 2;
        }
        $money[2] = ($fee * $royalty)/100;

        $sum = $money[2];

        $money[3] = $sum * 0.005 /(1 - (1 - 0.005) ^ $total);   //等比求和

        $base = $money[3];
        for($level = 4; $level         {
            $money[$level] = $base * (1 - 0.005);
        }
        
        return $money;
    }

你看下对不对

等比求和那里的公式计算,不清楚php中支持多次方吗

等比求和那里的公式计算,不清楚php中支持多次方吗



支持
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn