码迷,mamicode.com
首页 > 其他好文 > 详细

水仙花数

时间:2018-05-28 14:55:31      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:else   scanf   getchar   break   print   tchar   水仙花   etc   printf   

#include<stdio.h>

int main()
{
int a, b, c, i;
while (1)
{
scanf("%d", &i);
if (i >= 100 && i<1000)
{
a = i / 100;
b = i / 10 % 10;
c = i % 10;
if (a*a*a + b*b*b + c*c*c == i)
printf("yes\n");
else
printf("no\n");
}
if (i==0)
{
break;
}

}

getchar();
}

水仙花数

标签:else   scanf   getchar   break   print   tchar   水仙花   etc   printf   

原文地址:https://www.cnblogs.com/minTTremor/p/9099720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!