Contact: aviboots(AT)netvision.net.il
40,937 questions
53,400 answers
573 users
$value = 121.0; echo "The square root of " . $value . " is " . sqrt($value) . "\n"; /* run: The square root of 121 is 11 */
$value = 121.0; echo "The square root of " . $value . " is " . pow($value, 0.5) . "\n"; /* run: The square root of 121 is 11 */
$a = 9; echo sqrt($a) . "\n"; $b = 85; echo sqrt($b) . "\n"; /* run: 3 9.2195444572929 */