Write a C++ program to check whether a given number is an Armstrong number or not

  • برمجة سي بلس بلس
  • برمجة

Write a C++ program to check whether a given number is an Armstrong number or not

/*When the sum of the cube of the individual digits of a number
is equal to that number, the number is called Armstrong number. For example 153.
Sum of its divisor is 13 + 53;+ 33; = 1+125+27 = 153*/

Sample Output:

Check whether a given number is an Armstrong number or not:                                                
 -------------------------------------------------------                                             
  Input a number: 153    
153 is an Armstrong number

الأجوبة

#include <iostream>
using namespace std;

int main()
{
    int num, r, sum = 0, temp;
    cout << "\n\n Check whether a given number is an Armstrong number or not :\n";
    cout << "-----------------------------------------------------------------\n";
    cout << " Input a number: ";
    cin >> num;
    for (temp = num; num != 0; num = num / 10) 
	{
        r = num % 10;
        sum = sum + (r * r * r);
    }
    if (sum == temp)
        cout << temp << " is an Armstrong number." << endl;
    else
        cout << temp << " is not an Armstrong number." << endl;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...