阿姆斯特朗号码没有归还

时间:2016-07-18 12:26:14

标签: c# math

我写了一个小程序来确定这个数字是否是阿姆斯壮的数字。

对于大多数数字而言,它运作良好,但有一些数字(例如8208)应返回true,但它们返回false。

public static bool IsArmstrong(string numValue)
    {
        int sum = 0;
        int intValue = Int32.Parse(numValue);

        for (int i = intValue; i > 0; i = i / 10)
        {
            sum = sum + (int)Math.Pow(i % 10, 3.0);
        }
        if (sum == intValue)
            return true;
        else
            return false;
    }

我查看了其他一些关于阿姆斯特朗号码的帖子。据我所知,我正在使用正确的公式。

我在这里遗漏了什么吗?

我使用字符串值作为输入的原因是我从文本文件中评估数字。

2 个答案:

答案 0 :(得分:1)

您的算法始终使用3.0作为位数,其中"8028"有4位数。由于您将输入作为字符串传递,因此可以使用其length作为幂(如果没有空格等):(int)Math.Pow(i % 10, numValue.Length)

另一种选择,因为输入已经是一个字符串,你可以枚举它的字符来进行求和:(ascii value - ' 0')

public static bool IsArmstrong(string numValue)
{
    int pow = numValue.Length;
    return numValue.Sum(c=> Math.Pow(c-'0', pow)) == int.Parse(numValue);
}

答案 1 :(得分:0)

这是一个变种,用于检查阿姆斯特朗的数字。基于this,它可能会快一点

public static bool IsArmstrong(string numValue)
{
        long n;
        if (!long.TryParse(numValue, out n))
        {
            throw new Exception($"{numValue} not a number");
        }
        long c = 0, a;
        long temp = n;
        while (n > 0)
        {
            a = n % 10;
            n = n / 10;
            c = c + (int)Math.Pow(a,numValue.Length);
        }
        if (temp == c)
            return true;
        else
            return false;
}

一个有趣的事情,我运行你的代码没有任何问题,这是我做的测试代码。

    static void Main(string[] args)
    {
        Stopwatch sw = new Stopwatch();
        sw.Start();
        for (long i = 0; i < 100000; i++)
        {
            if (IsArmstrong(i.ToString()))
                Console.WriteLine(i + " " + IsArmstrong(i.ToString()));
        }

        Console.WriteLine($"DONE in {sw.ElapsedMilliseconds} ms");
        sw.Restart();
        for (long i = 0; i < 100000; i++)
        {
            if (IsArmstrong2(i.ToString()))
                Console.WriteLine(i + " " + IsArmstrong2(i.ToString()));
        }
        Console.WriteLine($"DONE in {sw.ElapsedMilliseconds} ms");

        Console.WriteLine(IsArmstrong2("548834"));
        Console.ReadKey();
    }
    public static bool IsArmstrong(string numValue)
    {
        long sum = 0;
        long longValue = long.Parse(numValue);

        for (long i = longValue; i > 0; i = i / 10)
        {
            sum = sum + (long)Math.Pow(i % 10, numValue.Length);
        }
        if (sum == longValue)
            return true;
        else
            return false;
    }
    public static bool IsArmstrong2(string numValue)
    {
        long n;
        if (!long.TryParse(numValue, out n))
        {
            throw new Exception($"{numValue} not a number");
        }
        long c = 0, a;
        long temp = n;
        while (n > 0)
        {
            a = n % 10;
            n = n / 10;
            c = c + (int)Math.Pow(a,numValue.Length);
        }
        if (temp == c)
            return true;
        else
            return false;
    }