Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何通过 12 的幂来提高双精度值? 10. 功率/计算/功率计算
在 iPhone 的对象 C 中,我将如何计算 x^y?通过弹出堆栈获取值
你应该#include <math.h>然后你可以使用
#include <math.h>
double res=pow(10, 1.5);
您可以使用 pow(x,y)。
它返回一个双精度值。
要转换为整数,myPowerNum = (int)pow((double)x, (double)y);