c++ Armostrong Numbers

Hey guys. Can you help me to create a program Armstrong Numbers. I need to make a function named ArmstrongNumbers with two integer parameters(p and q), and the function returns as a result a vector which elements are Armstrong numbers in domain from p to q including p and q, sorted in a ascending order. For example, for p=3000000 and q=10000000 the function should return a vector as a result which elements are 4210818 9926315(these are A.Numbers). The function needs to test if the number is Armstrongs or no!! PLEASE GUYS HELP, I NEED THIS DONE TILL FRIDAY! :) THANKS.
a function named ArmstrongNumbers

Ok: ArmstrongNumbers

with two integer parameters(p and q)

Ok: ArmstrongNumbers( int p, int q )

returns as a result a vector

Ok: std::vector ArmstrongNumbers( int p, int q );

... something about what the function does ...
Ok:
Please note that this is not a homework site. We won't do your homework for you. The purpose of homework is that you learn by doing. However we are always willing to help solve problems you encountered, correct mistakes you made in your code and answer your questions.

We didn't see your attempts to solve this problem yourself and so we cannot correct mistakes you didn't made and answer questions you didn't ask. To get help you should do something yourself and get real problems with something. If your problem is "I don't understand a thing", then you should go back to basics and study again.
Topic archived. No new replies allowed.