zzuli OJ 1027: 判断水仙花数

Description

 春天是鲜花的季节,水仙花就是其中最迷人的代表,数学上有个水仙花数,他是这样定义的:

水仙花数是指一个三位数,它的各位数字的立方和等于其本身,比如:153=13+53+33 

现在要求输入一个三位数,判断该数是否是水仙花数,如果是,输出“yes”,否则输出“no” 

Input

 输入一个三位的正整数

Output

输出“yes”“no”。

Sample Input

153

Sample Output

yes

HINT

Source

...



#include

int main(void)
{
    int n, a, b, c;

	scanf("%d", &n);
	a = n % 10;
	b = (n / 10) % 10;
	c = n / 100;

	if(n == a * a * a + b * b * b + c * c * c)
		printf("yes\n");
	else
		printf("no\n");

	return 0;
}


你可能感兴趣的:(ZZULI_OJ,初级ACM题集)