Write a C++ program using for loop to find whether the number is an Armstrong number or not. code example

Example 1: armstrong number

sum of cubes of the digits

Example 2: Write a C++ program using for loop to find whether the number is an Armstrong number or not.

#include 
using namespace std;

int main() {
    int num, originalNum, remainder, result = 0;
    cout << "Enter a three-digit integer: ";
    cin >> num;
    originalNum = num;

    while (originalNum != 0) {
        // remainder contains the last digit
        remainder = originalNum % 10;
        
        result += remainder * remainder * remainder;
        
        // removing last digit from the orignal number
        originalNum /= 10;
    }

    if (result == num)
        cout << num << " is an Armstrong number.";
    else
        cout << num << " is not an Armstrong number.";

    return 0;
}

Tags:

Misc Example