
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
PHP program to find the sum of cubes of the first n natural numbers
To find the sum of cubes of the first n natural numbers, the code is as follows −
Example
<?php function sum_of_cubes($val) { $init_sum = 0; for ($x = 1; $x <= $val; $x++) $init_sum += $x * $x * $x; return $init_sum; } print_r("The sum of cubes of first 8 natural numbers is "); echo sum_of_cubes(8); ?>
Output
The sum of cubes of first 8 natural numbers is 1296
A function named ‘sum_of_cubes’ is defined that initializes a sum to 0. Every natural number is multiplied by itself thrice (cube) and added to the initial sum. The limit is the value that is passed as a parameter to the function. The limit is defined outside the function and the function is called. Relevant output is displayed on the console.
- Related Questions & Answers
- PHP program to find the sum of cubes of natural numbers that are odd
- PHP program to find the sum of the 5th powers of first n natural numbers
- 8085 program to find the sum of first n natural numbers
- PHP program to calculate the sum of square of first n natural numbers
- Program to find sum of first n natural numbers in C++
- Java program to find the sum of n natural numbers
- C Program for the cube sum of first n natural numbers?
- PHP program to find the average of the first n natural numbers that are even
- Sum of first n natural numbers in C Program
- Java Program to cube sum of first n natural numbers
- Sum of sum of first n natural numbers in C++
- C++ Program for Sum of squares of first n natural numbers?
- Sum of squares of first n natural numbers in C Program?
- Python Program for Sum of squares of first n natural numbers
- C Program for cube sum of first n natural numbers?
Advertisements