TheAlgorithms-C-Plus-Plus/math/armstrong_number.cpp

92 lines
2.6 KiB
C++
Raw Normal View History

2020-06-24 23:16:23 +08:00
/**
* @file
* @brief Program to check if a number is an [Armstrong/Narcissistic
* number](https://en.wikipedia.org/wiki/Narcissistic_number) in decimal system.
*
* @details
* Armstrong number or [Narcissistic
* number](https://en.wikipedia.org/wiki/Narcissistic_number) is a number that
* is the sum of its own digits raised to the power of the number of digits.
*
* let n be the narcissistic number,
* \f[F_b(n) = \sum_{i=0}^{k-1}d_{i}^{k}\f] for
* \f$ b > 1 F_b : \N \to \N \f$ where
* \f$ k = \lfloor log_b n\rfloor is the number of digits in the number in base
* \f$b\f$, and \f$ d_i = \frac{n mod b^{i+1} - n mod b^{i}}{b^{i}} \f$
*
* @author [Neeraj Cherkara](https://github.com/iamnambiar)
*/
#include <cassert> /// for assert
#include <cmath> /// for std::pow
#include <iostream> /// for IO operations
2020-06-24 23:16:23 +08:00
/**
* @brief Function to calculate the total number of digits in the number.
2020-06-24 23:16:23 +08:00
* @param num Number
* @return Total number of digits.
*/
int number_of_digits(int num) {
int total_digits = 0;
while (num > 0) {
num = num / 10;
++total_digits;
}
return total_digits;
}
/**
* @brief Function to check whether the number is armstrong number or not.
* @param number to be checked
2020-06-24 23:16:23 +08:00
* @return `true` if the number is armstrong.
* @return `false` if the number is not armstrong.
*/
bool is_armstrong(int number) {
// If the number is less than 0, then it is not an armstrong number.
2020-06-24 23:16:23 +08:00
if (number < 0) {
return false;
}
2020-06-24 23:16:23 +08:00
int sum = 0;
int temp = number;
// Finding the total number of digits in the number
int total_digits = number_of_digits(number);
while (temp > 0) {
int rem = temp % 10;
// Finding each digit raised to the power total digit and add it to the
// total sum
sum += static_cast<int>(std::pow(rem, total_digits));
2020-06-24 23:16:23 +08:00
temp = temp / 10;
}
return number == sum;
}
/**
* @brief Self-test implementations
* @returns void
*/
static void test() {
2020-06-24 23:16:23 +08:00
// is_armstrong(370) returns true.
assert(is_armstrong(370) == true);
// is_armstrong(225) returns false.
assert(is_armstrong(225) == false);
// is_armstrong(-23) returns false.
assert(is_armstrong(-23) == false);
// is_armstrong(153) returns true.
assert(is_armstrong(153) == true);
// is_armstrong(0) returns true.
assert(is_armstrong(0) == true);
// is_armstrong(12) returns false.
assert(is_armstrong(12) == false);
std::cout << "All tests have successfully passed!\n";
2020-06-24 23:16:23 +08:00
}
/**
* @brief Main Function
* @returns 0 on exit
*/
2020-06-24 23:16:23 +08:00
int main() {
test(); // run self-test implementations
2020-06-24 23:16:23 +08:00
return 0;
}