[Plain]
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: enter a three-digit number n to determine whether the output n is a daffodils number.
* If the cube of each number is equal to the number itself, it is called "Daffodils" (for example, 153 = 13 + 53 + 33 ).
* Question: (http://blog.csdn.net/sxhelijian/article/details/7936569 ).
* Completion date: January 1, April 10, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int main ()
{
Int num;
Int;
Int B;
Int c;
Printf ("enter a three-digit integer: \ n ");
Scanf ("% d", & num );
A = num % 10; // obtain the single digit of num
B = num/10% 10; // obtain the ten digits of num
C = num/100; // obtain the number of num digits
If (num = a * a + B * B + c * c) // check whether the number of daffodils exists.
{
Printf ("% d is the number of daffodils! \ N ", num );
}
Else
{
Printf ("% d is not the number of daffodils! \ N ", num );
}
Return 0;
}
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: enter a three-digit number n to determine whether the output n is a daffodils number.
* If the cube of each number is equal to the number itself, it is called "Daffodils" (for example, 153 = 13 + 53 + 33 ).
* Question: (http://blog.csdn.net/sxhelijian/article/details/7936569 ).
* Completion date: January 1, April 10, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int main ()
{
Int num;
Int;
Int B;
Int c;
Printf ("enter a three-digit integer: \ n ");
Scanf ("% d", & num );
A = num % 10; // obtain the single digit of num
B = num/10% 10; // obtain the ten digits of num
C = num/100; // obtain the number of num digits
If (num = a * a + B * B + c * c) // check whether the number of daffodils exists.
{
Printf ("% d is the number of daffodils! \ N ", num );
}
Else
{
Printf ("% d is not the number of daffodils! \ N ", num );
}
Return 0;
}