Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What is the equivalent of Pascal's Real a) unsigned int b) float c) char

970


Using a smart pointer can we iterate through a container?

1021


Which is better c++ or java?

926


What is the difference between a "copy constructor" and an "assignment operator" in C++?

1014


What data encapsulation is in c++?

1049


Is there a sort function in c++?

932


Explain how would you handle a situation where you cannot call the destructor of a local explicitly?

909


Explain the difference between c & c++?

1018


What is difference between n and endl in c++?

1028


What do you mean by stack unwinding in c++?

1173


What is the use of seekg in c++?

991


Why are pointers used?

945


What is data abstraction? How is it different from data encapsulation?

942


Differentiate between a constructor and a method in C++.

991


Write a code/algo to find the frequency of each element in an array?

1048