本帖最后由 mosuge7 于 2013-5-22 19:35 编辑
水仙花数:
如果a*a*a+b*b*b+c*c*c=cba,那么cba就是水仙花数,其中c b a代表百位、十位、各位的数字。
判断一个数是否为水仙花谁:
Console.WriteLine("请输入一个数");
int i = Convert.ToInt32(Console.ReadLine());
int ge = i % 10;
int shi = i / 10 % 10;
int bai = i / 100;
if (i == ge * ge * ge + shi * shi * shi + bai * bai * bai)
{
Console.WriteLine("{0}是水仙花数", i);
} |