CPP Program For Armstrong Number
The sum of the cube of individual digits of a number is equal to the number itself is called Armstrong number. #include<iostream.h> #include<conio.h> void main() { clrscr(); int a,n,rev=0,x; cout…
The sum of the cube of individual digits of a number is equal to the number itself is called Armstrong number. #include<iostream.h> #include<conio.h> void main() { clrscr(); int a,n,rev=0,x; cout…