1.Between 100 and 999 are some numbers that have the
characteristics that if you cube the individual digits and
sum together you will get the same number.
2. A program that can accept as input an integer and output
the equivalent of that number in words.
Answer Posted / leosoft
#include<stdio.h>
#include<math.h>
int a,b,c;
int main()
{
for(a=0;a<=9;a++)
{
for(b=0;b<=9;b++)
{
for(c=0;c<=9;c++)
if ((a*a*a)+(b*b*b)+(c*c*c)==(100*a)+(10*b)+(c))
printf("\nThe Numbers are :%d",(100*a)+(10*b)+(c));
}
}
return 0;
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is a hash function c++?
What is a constant reference?
Explain abstraction.
Explain what you mean by a pointer.
What is the best c++ book for beginners?
Describe the role of the c++ in the tradeoff of safety vs. Usability?
Is c++ built on c?
How do you clear a set in c++?
What are register variables?
Why c++ is so important?
Is c++ map a hash table?
Is std :: string immutable?
What is a volatile variable in c++?
What is a virtual destructor? Explain the use of it?
What does std :: flush do?