PHP Online Compiler
Example: PHP Program to Find Factorial of a Number using For loop
C
C++
C#
Java
Python
PHP
main.php
STDIN
Run
<?php // PHP Program to Find Factorial of a Number using For loop $x = 9; $f = 1; // $x - To store the input number // $f - To store the factorial value if ($x > 0) { for ($i = 1; $i <= $x; $i++) { $f *= $i; } echo "Factorial of " . $x . " = " . $f . "\n"; } else { echo "Sorry, The input number should be positive number& it's greater than 0!\n"; } ?>
Output
Clear
ADVERTISEMENTS