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.
我正在开发用于计算燃料的应用程序...
我需要知道如何为 10 中的数字供电?
Excel 代码是“10^1.5”
如果你的意思是在 XCode 中,你必须#include <math.h>然后你可以使用pow:
#include <math.h>
pow
double res=pow(10, 1.5);