6

PHP Program to Find Square Root of a Number

 9 months ago
source link: https://www.geeksforgeeks.org/php-program-to-find-square-root-of-a-number/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

PHP Program to Find Square Root of a Number

Discuss
Courses

Given a Number, the task is to find the Square Root of Number in PHP.

Examples:

Input: 15
Output: 5

Input: 30
Output: 5.477

There are three methods to find the square root of the given number, these are:

Using sqrt() Function

The sqrt() function is used to calculate the square root of a number.

Syntax:

float sqrt( $value )

Example:

<?php
function squareRoot($number) {
return sqrt($number);
}
$num = 36;
echo "Square Root: " . squareRoot($num);
?>
Output
Square Root: 6

Using pow() Function

The pow() function is used to calculate the power of a number. Here, we calculate the power 1/2 or 0.5 of given number.

Syntax:

pow($number, 0.5);

Example:

<?php
function squareRoot($number) {
return pow($number, 0.5);
}
$num = 30;
echo "Square Root: " . squareRoot($num);
?>
Output
Square Root: 5.4772255750517

Using Exponentiation Operator (**)

The exponential operator (**) is used to calculate the exponent power of number. Here, we use exponent power to 0.5.

Syntax:

$number ** 0.5;

Example:

<?php
function squareRoot($number) {
return $number ** 0.5;
}
$num = 36;
echo "Square Root: " . squareRoot($num);
?>
Output
Square Root: 6
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!
Last Updated : 12 Dec, 2023
Like Article
Save Article

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK