Thủ Thuật Hướng dẫn Define a function to count the number of factor of a number in php Mới Nhất
Bùi Công Duy đang tìm kiếm từ khóa Define a function to count the number of factor of a number in php được Update vào lúc : 2022-09-26 14:36:10 . Với phương châm chia sẻ Bí quyết về trong nội dung bài viết một cách Chi Tiết 2022. Nếu sau khi đọc nội dung bài viết vẫn ko hiểu thì hoàn toàn có thể lại phản hồi ở cuối bài để Mình lý giải và hướng dẫn lại nha.trang chủ » PHP » PHP programs
Nội dung chính- Method 1: Using iterationMethod 2: Optimized
CodeMethod 3: Optimized Code with sorted resultMethod 4: Another Optimized CodeRecommended PagesHow do you find the factors of a number in PHP?How do you count the number of factors?How do you find the factors of a number in CPP?How do you count the number of factors in Java?
In this article, we are going to learn how to create a function in PHP that will help us calculate factors of any given number?
Submitted by Kongnyu Carine, on January 10, 2022
For instance, if we have to list the factors of a number y. Then, we have to look for all possible numbers within the range 0 to the number y (with 0 exclusive because we do not divide a number by 0) that gives no remainder when it divides y.
Example:
Input 6 Output 1,2,3,4,5,6,.Let's Write out a PHP function to do this for us:
Program/Source Code:
Output:
Zero has no factors The factors of 50 are 1,2,5,10,25,50,PHP Basic Programs »
Objective: Write a PHP program to find all distinct factors (divisors) of a given natural number. The divisors of few numbers are given below:
Number: 10 Divisors: 1 2 5 10 Number: 15 Divisors: 1 3 5 15 Number: 100 Divisors: 1 2 4 5 10 20 25 50 100Method 1: Using iteration
One of the basic approach is to iterate from 1 to n and in each iteration check whether the number divides n. If it divides then print it.
The above code will give the following output:
Divisors of 10 are: 1 2 5 10 Divisors of 50 are: 1 2 5 10 25 50 Divisors of 100 are: 1 2 4 5 10 20 25 50 100Method 2: Optimized Code
Instead of checking the divisibility of the given number from 1 to n, it is checked till square root of n. For a factor larger than square root of n, there must the a smaller factor which is already checked in the range of 1 to square root of n.
The above code will give the following output:
Divisors of 10 are: 1 10 2 5 Divisors of 50 are: 1 50 2 25 5 10 Divisors of 100 are: 1 100 2 50 4 25 5 20 10Method 3: Optimized Code with sorted result
In the previous method, results are produced in a irregular fashion (printed in pairs - small number and large number). The result can be sorted by storing the larger number and print them later on. Consider the example below:
= 0; $i--) echo $arr[$i]." "; echo "n"; printDivisors(10); printDivisors(50); printDivisors(100); ?>The above code will give the following output:
Divisors of 10 are: 1 2 5 10 Divisors of 50 are: 1 2 5 10 25 50 Divisors of 100 are: 1 2 4 5 10 20 25 50 100Method 4: Another Optimized Code
To produce the result in sorted order, we can iterate from 1 to square root of n and printing the number which divides n. After that we can iterate back (in reverse order) and printing the quotient of all numbers which divides n.
= 1; $i--) if($n%$i == 0) echo $n/$i." "; echo "n"; printDivisors(10); printDivisors(50); printDivisors(100); ?>The above code will give the following output:
Divisors of 10 are: 1 2 5 10 Divisors of 50 are: 1 2 5 10 25 50 Divisors of 100 are: 1 2 4 5 10 20 25 50 100Recommended Pages
- PHP Program - To Check Prime NumberPHP Program -
Bubble SortPHP Program - Selection SortPHP Program - Maximum Subarray SumPHP Program - Reverse digits of a given
Integer
PHP Program - Merge SortPHP Program - Shell SortStack in PHPQueue in
PHP
PHP Program - Find LCM of Two NumbersPHP Program - To Check Whether a Number is Palindrome or NotPHP Program - To Check Whether a String is Palindrome or NotPHP Program - Heap SortPHP Program - Quick SortPHP - Swap Two Numbers without using Temporary VariablePHP Program - To Check Armstrong NumberPHP Program - Counting Sort
PHP Program - Radix SortPHP Program - Find Largest Number among Three NumbersPHP Program - Print Floyd's Triangle