Mathematics

Add Matrices

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm computes the sum of two matrices.

Factorial

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm finds the factorial of a given number.

Fibonacci Series

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm finds the fibonacci series. In this algorithm the next number is found by adding up the two numbers before it. Example of fibonacci ...

Greatest Common Divisor

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm find the greatest common divisor of two integers.

Is Armstrong Number

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm checks whether a given number is armstrong or not. Armstrong number is a number which is equal to sum of digits raise to the power ...

Is Palindrome Number

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm check whether a given number is palindrome number or not. A palindrome number is a number such that if we reverse it, it will not ...

Is Perfect Number

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm checks whether a given number is perfect number or not. Perfect number is a number which is equal to sum of its divisor. For example ...

Is Strong Number

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm checks whether a given number is strong number or not. Strong numbers are the numbers whose sum of factorial of digits is equal to the ...

Least Common Multiple

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm find the least common multiple of two integers.

Median

Admin | 26-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm computes the median of the given set of numbers.