((82125.49845) / (0 + 1)) * ((1 + ((2.84*1)/100)) / (1 + ((2.84*1)/100) + 0.005))^(14.083)
以上计算给了我正确的值 76 703.2452
但是当我在 salesforce 中使用 Math.pow 做这些事情时,它并没有给我确切的结果并帮助我把它整理出来,下面是我在 salesforce apex 类
1 中使用的选项) System.debug('>>> pow=' + Math.pow((82125.49845 / (0 + 1)) * ((1 + ((2.84*1)/100)) / (1 + ((2.84*1) /100) + 0.005).doubleValue(),14.0832.doubleValue());
2) System.debug('>>> final=' +(82125.49845 / (0 + 1)) * ((1 + ((2.84* 1)/100)) / (1 + ((2.84*1)/100) + 0.005)).pow(14.0832));
问问题
436 次