C++中怎么表示幂指数

2024-12-30 07:13:08
推荐回答(1个)
回答1:

#include

double x,y,z;

//z=x^y
z=pow(x,y)