Function call in C Language 02-a positive integer with three digits = the sum of the factorial values of each digit

Source: Internet
Author: User

Function call in C Language 02-a positive integer with three digits = the sum of the factorial values of each digit
// Function call + Enumeration
/*
========================================================== ============================
Question: Calculate the positive integer of a three-digit number = the sum of the factorial of all its numbers!
For example: 145 = 1! + 4! + 5 !.
========================================================== ============================
*/
# Include
Int J (int n)
{
Int t = 1, I;
For (I = 1; I <= n; I ++)
T * = I;
Return (t );
}
Main ()
{
Int s, I, ge, shi, bai, qian;
For (s = 100; s <1000; s ++)
{
Ge = s % 10;
Shi = s/10% 10;
Bai = s/100% 10;
If (s = J (ge) + J (shi) + J (bai ))
Printf (% d = % d! + % D! + % D! , S, bai, shi, ge );
}
}

/*
========================================================== ============================
Comments: First, write a Function J for factorial, and then use division and remainder to find "Ten hundred"
The number in bits, and the number that meets the if condition is found through the enumeration method.
========================================================== ============================
*/

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.