Hello,
For my project I created a COperation class. One of the function of COperation is SQR which should return the square root. Whatever the number I try, it gave me 1. What's wrong with my code?

PHP Code:
double COperation::SQR(double Number)
{
    return 
pow(Number,(1/2));