
- 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 first n natural numbers that are divisible by a number ‘x’ or a number ‘y’
To find the sum of first n natural numbers that are divisible by a number ‘x’ or a number ‘y’, the code is as follows −
Example
<?php function sum_of_nums($n_val, $x_val, $y_val) { $val_1; $val_2; $val_3; $val_1 = floor(((int)$n_val / $x_val)) * (2 * $x_val + (int)((int)$n_val / $x_val - 1) * $X) / 2; $val_2 = floor(((int)$n_val / $y_val)) * (2 * $y_val + (int)((int)$n_val / $y_val - 1) * $y_val) / 2; $val_3 = floor(((int)$n_val / ($x_val * $y_val))) * (2 * ($x_val * $y_val) + ((int)$n_val / ($x_val * $y_val) - 1) * (int)($x_val * $y_val))/ 2; return ceil($val_1 + ($val_2 - $val_3)); } $n_val = 11; $x_val = 2; $y_val = 5; print_r("The sum of first 11 natural numbers divisible by 2 or 5 is "); echo sum_of_nums($n_val, $x_val, $y_val); ?>
Output
The sum of first 11 natural numbers divisible by 2 or 5 is 15
A function named ‘sum_of_nums’ is defined that computes three values by checking if they can be divided by two specific values or not. Outside the function, the number and the two specific values are defined, and the function is called by passing these values as parameters. Relevant output is displayed on the console
- Related Questions & Answers
- PHP program to find the first natural number whose factorial can be divided by a number ‘x’
- PHP program to find the sum of the first n natural numbers who are not powers of a specific number ‘k’
- Sum of first N natural numbers which are divisible by X or Y
- PHP program to find the first ‘n’ numbers that are missing in an array
- Python program to replace first ‘K’ elements by ‘N’
- Validate input: replace all ‘a’ with ‘@’ and ‘i’ with ‘!’JavaScript
- Write a program in C++ to count the Number of substrings that starts with ‘1’ and ends with ‘1’
- Print values of ‘a’ in equation (a+b) <= n and a+b is divisible by x
- Count the numbers divisible by ‘M’ in a given range in C++
- ‘AND’ vs ‘&&’ operators in PHP
- PHP program to find the average of the first n natural numbers that are even
- Rearrange an array such that ‘arr[j]’ becomes ‘i’ if ‘arr[i]’ is ‘j’ in C++
- Are ‘this’ and ‘super’ keywords in Java?
- Program to find number of pairs from N natural numbers whose sum values are divisible by k in Python
- Number of pairs from the first N natural numbers whose sum is divisible by K in C++
Advertisements