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);