From 0dbd3d84dee3acc027d7a36318f91f47c86d41cc Mon Sep 17 00:00:00 2001 From: Eshank Tyagi <111590631+mreshank@users.noreply.github.com> Date: Sun, 29 Oct 2023 19:45:14 +0530 Subject: [PATCH] Create Nth Fibonacci Term.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As Required, i've made the Fibonacci algorithm ♾ in PHP programming language mentioned in the issue no. 50. Kindly merge my PR if you believe that it completes your requirement of the Fibonacci Algorithm. Link to the issue : https://github.com/DevF3st/Learn-Programming/issues/50 --- PHP/Nth Fibonacci Term.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 PHP/Nth Fibonacci Term.php diff --git a/PHP/Nth Fibonacci Term.php b/PHP/Nth Fibonacci Term.php new file mode 100644 index 0000000..9723606 --- /dev/null +++ b/PHP/Nth Fibonacci Term.php @@ -0,0 +1,31 @@ +Nth term of the Fibonacci series is : "; +echo "\n"; + +// Calling recursive function to calculate and +// print Nth term of the Fibonacci Series +echo Fibonacci($n); + +?>