

How to check whether a number is Fibonacci or not in PHP?
source link: https://devhubby.com/thread/how-to-check-whether-a-number-is-fibonacci-or-not
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.

How to check whether a number is Fibonacci or not in PHP?
1 answer
Member
@loy You can use the function isFibonacci() below as example to check whether if a number is fibonacci or not in PHP:
<?php function isFibonacci(int $number): bool { $a = 0; $b = 1; if ($number == $a || $number == $b) { return true; } $sum = $a + $b; while ($sum <= $number) { if ($sum == $number) { return true; } $a = $b; $b = $sum; $sum = $a + $b; } return false; } // Output: true var_dump(isFibonacci(5)); // Output: false var_dump(isFibonacci(6)); // Output: true var_dump(isFibonacci(13)); |
Recommend
-
12
How to check whether a variable is empty in PHP 1091 views 1 year ago PHP Use the PHP empty()
-
6
C++ Program to Check whether a Number is Armstrong or notSkip to content
-
7
Java Program to Test whether a Number is Palindrome or notJava Program to Test whether a Number is Palindrome or not330 Views07/06/2022In...
-
5
C Program to Check Whether a Number is Prime or notC Program to Check Whether a Number is Prime or notHello friends. Welcome to weeks for Geeks. So
-
10
C++ Program to Check Whether Number is Even or OddSkip to content
-
11
How to check if a given number is Fibonacci number?Skip to content
-
4
Check whether a given number is even or oddSkip to content
-
13
How to check whether a variable is set or not in PHP 1600 views 2 years ago PHP Use the PHP isset()
-
5
Java Program to Check Whether Number is Even or OddSkip to content
-
6
There are several articles on "how to check in Java whether a number is Automorphich or not" which you can find on the Internet including some from popular websites like GeeksforGeeks and JavaTpoint. But they all have a similar problem. They are n...
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK