Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

암스트롱 번호를 확인하는 C 프로그램?

<시간/>

숫자의 자릿수 세제곱의 합이 숫자 자체와 같으면 숫자를 암스트롱 수라고 합니다. 프로그래머의 기본 논리를 구축하기 위해 프로그래밍에서 일반적으로 사용되는 수학적 개념입니다.

Input:370
Output:370 is an Armstrong Number

설명

370 = 3*3*3 + 7*7*7 + 0*0*0
= 27 + 343 + 0
= 370

include <iostream>
using namespace std;
int main() {
   int n, num, rem, sum = 0;
   cin >> n;
   num = n;
   while(num != 0) {
      digit = num % 10;
      sum += digit * digit * digit;
      num /= 10;
   }
   if(sum == n)
      printf("%d is an Armstrong number.", n );
   else
      printf("%d is not an Armstrong number.",n);
   return 0;
}