0
Thanks a lot,
you have both saved me from writting some really stupid long fuctions!
0
Also you can do it with exponential function:
Exp(3*Ln(y))
where 3 could be any number
0
Use the Math.Pow function like this:
double x,power,result;
x=5;//whatever value you want;
power =3;//again, what power you desire
result=Math.Pow(x,power);
}