gpt4 book ai didi

c++ - 你如何在 3 个部分中使用 c++ 中的 power 函数?

转载 作者:行者123 更新时间:2023-11-28 01:48:01 27 4
gpt4 key购买 nike

我需要帮助解决这个增长/衰退方程式。

answer = principle * pow(2.7,rate,number));

这是我对该行的代码,我想计算这个等式...

answer = principle * 2.7^(rate*number)

我收到一条错误消息,指出 pow 函数不适用于这种情况。请注意,我正在使用...

 #include <cmath>

错误:

.\Lab2.cpp(27): error C2661: 'pow': no overloaded function takes 3 arguments

谢谢

最佳答案

auto answer = principle * pow(2.7, rate * number);

关于c++ - 你如何在 3 个部分中使用 c++ 中的 power 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44092208/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com