In: Computer Science
Write an Assembley Language.Given a number x, determine whether the given number is Armstrong number or not. A positive integer of n digits is called an Armstrong number of order n(where order is the number of digits) if.
abcd... = pow(a,n) + pow(b,n) + pow(c,n) + pow(d,n) + ....
Example:
HINT: Use the ReadString function found in the Irvine32 library to capture the user's input.
PROGRAM TO FIND THE GIVEN INTEGER IS ARMSTRONG OR NOT IN ASSEMBLY LANGUAGE
SAMPLE INPUT OUTPUT :