Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

PHP Program to Check for a Cube Number

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

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the realm of programming, mathematical properties of numbers often lead to interesting and practical applications. One such property is being a cube number. A cube number is an integer that is the cube of an integer.

In this tutorial, we'll delve into a PHP program that efficiently checks whether a given number is a perfect cube or not.

πŸ“„ Example

Let's take a look at the PHP code that accomplishes this functionality.

isPerfectCube.php
Copied
Copy To Clipboard
<?php
// Function to check if a number is a perfect cube
function isPerfectCube($number)
{
  // Calculate the cube root of the number
  $cubeRoot = pow($number, 1 / 3);

  // Check if the cube root is close to an integer
  return abs($cubeRoot - round($cubeRoot)) < 1e-10;
}

// Driver program
// Replace this value with your desired number
$number = 27;

// Check if the number is a perfect cube
if (isPerfectCube($number))
{
  echo $number . " is a perfect cube.\n";
}
else
{
  echo $number . " is not a perfect cube.\n";
}

?>

πŸ’» Testing the Program

To test the program with different numbers, simply replace the value of the $number variable in the script.

Output
27 is a cube number.

Run the script to check if the number is a perfect cube.

🧠 How the Program Works

  1. The program defines a function isPerfectCube that takes a number as input and returns true if it is a perfect cube, and false otherwise.
  2. Inside the function, it calculates the cube root of the number using the pow function.
  3. It then checks if the cube root is close to an integer using a tolerance value (1e-10 in this case).
  4. The main part of the script initializes a variable with a number and calls the isPerfectCube function to determine if it's a perfect cube.

πŸ“ Between the Given Range

Let's dive into the PHP code that identifies cube numbers in the specified range.

isCubeNumber.php
Copied
Copy To Clipboard
<?php
// Function to check if a number is a cube number
function isCubeNumber($number)
{
  // Calculate the cube root
  $cubeRoot = round(pow($number, 1 / 3));

  // Check if the cube of the cube root is equal to the original number
  return ($cubeRoot * $cubeRoot * $cubeRoot == $number);
}

// Display cube numbers in the range 1 to 50
echo "Cube numbers in the range 1 to 50:\n";

for ($i = 1;$i <= 50;++$i)
{
  if (isCubeNumber($i))
  {
    echo "$i ";
  }
}

?>

πŸ’» Testing the Program

Output
Cube numbers in the range 1 to 50:
1 8 27

Run the script to see the cube numbers in the specified range.

🧠 How the Program Works

  1. The program defines a function isCubeNumber that checks if a given number is a cube number.
  2. Inside the function, it calculates the cube root of the number and checks if the cube of the cube root is equal to the original number.
  3. The program then iterates through the numbers from 1 to 50, calling the function to identify and display cube numbers.

🧐 Understanding the Concept of Cube Number

A cube number is the result of raising an integer to the power of 3. For example, 2 * 2 * 2 = 8, so 8 is a cube number.

🎒 Optimizing the Program

The provided program is straightforward, but you might consider optimizing it further. For instance, you can explore alternative methods for checking if a number is a cube number without using the cbrt function.

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
6 months ago

If you have any doubts regarding this article (PHP Program to Check for a Cube 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