易语言的这个求平方根和求次方,在c++里是哪两个函数,如果没有这两个函数要怎么写才能实现求这平方根和求次方
#include<iostream> #include<cmath> //求平方根 sqrt(double a) //求次方 pow(double a,int n)
#include<math.h> sqrt(x); pow(x,n);