Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

PHP Program to Check Evil Number

Posted in PHP Tutorial
Updated on Jan 11, 2024
By Mari Selvan
πŸ‘οΈ 26 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
PHP Program to Check Evil Number

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the realm of programming, understanding the properties of numbers is a fascinating journey. One interesting concept is that of Evil Numbers.

An Evil Number is a non-negative integer that has an even number of '1' bits in its binary representation.

In this tutorial, we will explore a PHP program designed to check whether a given number is an Evil Number.

The program involves converting the decimal number to its binary representation and counting the number of '1' bits.

πŸ“„ Example

Let's delve into the PHP code that accomplishes this task.

isEvilNumber.php
Copied
Copy To Clipboard
<?php
// Function to count the number of set bits (1s) in binary representation
function countSetBits($number)
{
  $count = 0;

  while ($number)
  {
    $count += $number & 1;
    $number >>= 1;
  }

  return $count;
}

// Function to check if a number is an Evil Number
function isEvilNumber($number)
{
  // Count the number of set bits in the binary representation
  $setBitsCount = countSetBits($number);

  // If the count of set bits is even, it is an Evil Number
  return $setBitsCount % 2 == 0;
}

// Driver program
// Replace this value with the number you want to check
$number = 15;

// Call the function to check if the number is an Evil Number
if (isEvilNumber($number)) echo "$number is an Evil Number.\n";
else echo "$number is not an Evil Number.\n";

?>

πŸ’» Testing the Program

To test the program with different numbers, modify the value of $number in the code.

Output
15 is an Evil Number.

🧠 How the Program Works

  1. The program defines a function countSetBits that takes an integer $number as input and returns the count of set bits (1s) in its binary representation.
  2. The function isEvilNumber checks if the count of set bits is even, indicating that the number is an Evil Number.
  3. Inside the main program, replace the value of $number with the desired number you want to check.
  4. The program calls the isEvilNumber function and prints the result using echo.

πŸ“ Between the Given Range

Let's explore the php code that checks for Evil Numbers in the specified range.

isEvil.php
Copied
Copy To Clipboard
<?php
// Function to check if a number is evil
function isEvil($number)
{
  $binaryRepresentation = decbin($number);
  $countOnes = substr_count($binaryRepresentation, '1');
  return $countOnes % 2 == 0;
}

// Range for Evil Numbers
$lowerLimit = 1;
$upperLimit = 10;

// Display Evil Numbers in the range
echo "Evil numbers in the range $lowerLimit to $upperLimit: ";

for ($i = $lowerLimit;$i <= $upperLimit;$i++)
{
  if (isEvil($i))
  {
    echo "$i ";
  }
}

?>

πŸ’» Testing the Program

The provided PHP program checks for Evil Numbers in the range from 1 to 10. To test with a different range, adjust the values of $lowerLimit and $upperLimit accordingly.

Output
Evil numbers in the range 1 to 10:
3 5 6 9 10

Run the script to see the Evil Numbers in the specified range.

🧠 How the Program Works

  1. The program defines a function isEvil that takes a number as input, converts it to binary, and checks if it has an even number of 1s in its binary representation.
  2. The range of numbers to be checked for Evil Numbers is set from 1 to 10.
  3. The program iterates through each number in the range and prints the Evil Numbers.

🧐 Understanding the Concept of Evil Number

Before delving into the code, let's understand the concept of Evil Numbers. An Evil Number is a non-negative integer that has an even number of '1' bits in its binary representation.

🎒 Optimizing the Program

While the provided program is effective, consider exploring and implementing alternative approaches or optimizations for checking Evil Numbers.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
5 months ago

If you have any doubts regarding this article (PHP Program to Check Evil Number), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy