c#查找水仙花数

水仙花数是指一个n(n>=3)位数,每一位数字的n次幂的和正好等于这个数本身。用c#编程查找一定范围内的水仙花数。... 水仙花数是指一个n(n>=3)位数,每一位数字的n次幂的和正好等于这个数本身。用c#编程查找一定范围内的水仙花数。 展开
 我来答
最后的仙人
2009-08-23 · TA获得超过1961个赞
知道大有可为答主
回答量:1509
采纳率:0%
帮助的人:1400万
展开全部
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication6
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入一个上限值:(小于" + long.MaxValue.ToString() + ")");
long MAX = Convert.ToInt64(Console.ReadLine());
long[] SXH = Find(MAX);
foreach (long i in SXH)
{
Console.Write(i+",");
}
Console.Write("……");
Console.ReadKey();
}

public static long[] Find(long Max)
{
long[] array1 = new long[Max];
long index=0;
for (long i = 100; i < Max; i++)
{
long[] array2 = divide(i);
long sum = 0;
for (long j = 0; j < array2.Length; j++)
{
sum += Convert.ToInt64(Math.Pow(array2[j], WeiShu(i)));
}
if (sum == i)
{
array1[index] = sum;
index++;
}
}
long[] array3 = new long[index];
for (long i = 0; i < index; i++)
{
array3[i] = array1[i];
}
return array3;
}
private static long[] divide(long sum)
{
long[] array1 = new long[7];
long index = 0;
while (sum != 0)
{
array1[index] = sum % 10;
sum /= 10;
index++;
}
long[] array2 = new long[index];
for (long i = 0; i < index; i++)
{
array2[i] = array1[i];
}
return array2;
}
private static long WeiShu(long sum)
{
long i = 0;
while (sum != 0)
{
i++;
sum /= 10;
}
return i;
}
}
}
lizhangyong420
2009-08-23 · TA获得超过206个赞
知道答主
回答量:299
采纳率:0%
帮助的人:197万
展开全部
int a,b,c,n,i=0;
for(n=100;n<=999;n++)
{
a=n/100;
b=(n-a*100)/10;
c=(n-a*100-b*10);
if(n==a*a*a+b*b*b+c*c*c)
Console.WriteLine("{0}",n);
else continue;
i=i+1;
if(i%5==0)Console.WriteLine("")
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
fz272103148
2009-08-23 · TA获得超过523个赞
知道小有建树答主
回答量:966
采纳率:75%
帮助的人:318万
展开全部
检举int a,b,c,n,i=0;
for(n=100;n<=999;n++)
{
a=n/100;
b=(n-a*100)/10;
c=(n-a*100-b*10);
if(n==a*a*a+b*b*b+c*c*c)
Console.WriteLine("{0}",n);
else continue;
i=i+1;
if(i%5==0)Console.WriteLine("")
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
evilzsh
2009-08-23 · 超过11用户采纳过TA的回答
知道答主
回答量:45
采纳率:0%
帮助的人:0
展开全部
最笨的方法我知道

先把那个数分解了 个位 十位 百位

然后按那个规律计算一下 看是否等于没分解前的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式