answersLogoWhite

0


Best Answer

370 is the next Armstrong number.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the Armstrong number after 153?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is amstrong number?

153 is a Armstrong number 13+53+33=153


If 153 is the Armstrong number why it is called so?

yes


List all Armstrong numbers between 1 to 5000?

1 is an Armstrong Number 2 is an Armstrong Number 3 is an Armstrong Number 4 is an Armstrong Number 5 is an Armstrong Number 6 is an Armstrong Number 7 is an Armstrong Number 8 is an Armstrong Number 9 is an Armstrong Number 153 is an Armstrong Number 370 is an Armstrong Number 371 is an Armstrong Number 407 is an Armstrong Number 1634 is an Armstrong Number


What does Armstrong mean in C programming?

Armstrong number means 153=(1^3)+(5^3)+(3^3)


Armstrong for 123 in C programming?

It's not Armstrong no.The Armstrong no is 153.[b'coz 13 + 2 3+ 3 3 is not equal to 123]


To find Armstrong number in java?

/*Program to find whether given no. is Armstrong or not. Example : Input - 153 Output - 1^3 + 5^3 + 3^3 = 153, so it is Armstrong no. */ class Armstrong{ public static void main(String args[]){ int num = Integer.parseInt(args[0]); int n = num; //use to check at last time int check=0,remainder; while(num > 0){ remainder = num % 10; check = check + (int)Math.pow(remainder,3); num = num / 10; } if(check == n) System.out.println(n+" is an Armstrong Number"); else System.out.println(n+" is not a Armstrong Number"); } }


What are Armstrong numbers between 1 and 100?

Whole numberThree digitSum of cube of single digits making up the number, is the same as the number itself.ie 153 = 13 + 53 + 33 = 1 + 125 + 27 = 153The armstrong numbers between 0 and 999 are :000001153370371407


What is the nearest whole number to 153?

It is 153.


What are Armstrong numbers between 100 to 1000?

Some are 371, 407, 370, 153, etc.


Is 153 a prime number or composite number and what are its factors?

153 is composite. Its factors are 1, 3, 9, 17, 51, 153.


What is 153 arm strong number?

1 cube + 5 cube + 3 cube = 153 thtsy 153 is aram strong number


Flow chart for Armstrong number?

armstrong number