Yahoo India Web Search

Search results

  1. Jun 15, 2023 · An Armstrong number is a number that is equal to the sum of its digits each raised to the power of the number of digits. In other words, if you take each digit in the number, raise it to the power of the total count of digits in the number, and then sum them all together, the result is the original number itself.

  2. Dec 20, 2023 · Given an array arr[] of size N. The task is to find the largest Armstrong number of the array. Note: An Armstrong number is a number that is equal to the sum of its digits raised to the power of the number of digits in that number. Examples: Input: arr[] = [153, 9474, 1634, 371, 8208, 9475]Output: 9474Explanation: The largest Armstrong number in th

  3. Jun 16, 2022 · The article covers what is Armstrong number, along with it's logic, examples, armstrong program and armstrong number using python. Read more here.

  4. Nov 30, 2022 · An Armstrong number is a number whose sum of the cubes of its digits equals the number itself. For example, 153 is an Armstrong number. If you take the digits of 153 individually and cube them: (1 × 1 × 1) + (5 × 5 × 5) + (3 × 3 × 3) Then add the results: 1 + 125 + 27. You'll get 153, the same as the original number.

  5. Mar 15, 2022 · As per number theory, A number for any given number base can be defined as an Armstrong number when it returns the same number itself on the summation of the digits of the number each raised to the number of digits in the number. Armstrong number is also known as Narcissistic number or plus perfect number.

  6. An Armstrong number is a n -digit number that is equal to the sum of each of its digits taken to the nth power. For example, 153 is an armstrong number because 153 = 1³ + 5³ + 3³. Other than the numbers 1 through 9, it is the smallest Armstrong number; there are none with two digits.

  7. Jun 13, 2022 · Given an array arr[] of size N. The task is to find the largest Armstrong number of the array. Note: An Armstrong number is a number that is equal to the sum of its digits raised to the power of the number of digits in that number. Examples: Input: arr[] = [153, 9474, 1634, 371, 8208, 9475]Output: 9474Explanation: The largest Armstrong number in th

  8. An Armstrong Number is a number whose sum of its individual digits, raised to the power of the number of digits in the number, results in the same original number. For example, let’s take the number ‘153,’ which has three digits.

  9. Mar 16, 2022 · Armstrong number is equal to the sum of the digit raised to power its length. This article by Scaler Topics defines Armstrong number in the number theory.

  10. An Armstrong number is equal to the sum of its own digits each raised to the. power of the number of digits. For example, 370 is an Armstrong number because 3*3*3 + 7*7*7 + 0*0*0 = 370. Armstrong numbers are also called Narcissistic numbers and Pluperfect numbers.