Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

square root

#include<iostream>
#include<cmath>
using namespace std;
 
int main(){
    int b = 34;
    int p = 2;
    float result = pow(b,p)
    cout<< "Square = "<<result<<endl;
}
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #square #root
ADD COMMENT
Topic
Name
9+2 =