Answer the following Question :
Please help me write a WinMIPS64 / EduMips64 code to determine whether a given number is an Armstrong number.
The n- digit numbers equal to sum of nth powers of their digits (a finite sequence), called Armstrong numbers. They first few are given by 1, 2, 3, 4, 5, 6, 7, 8, 9, 153, 370, 371, 407, 1634, 8208, 9474, 54748,....
For example, consider 371, 371 = 33 + 73+ 13 = 27 + 343 + 1 = 371.
Display the numbers using double format in WinMIPS64 / EduMips64. You need to test the code only for 1-4 digit numbers from 0 to 9999.