• 水仙花数<大家帮助研究下,高位数的 怎么设计>


    水仙花数是指一个n(n>=3)位数,每一位数字的n次幂的和正好等于这个数本身。用c#编程查找一定范围内的水仙花数

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace ShuiXianHuaShu{
        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;
            }
        }
    }

    转载请注明出处,感谢。
    作者:李宏旭
    阅罢此文,如果您觉得本文不错并有所收获,请【打赏】或【推荐】,也可【评论】留下您的问题或建议与我交流。
    你的支持是我不断创作和分享的不竭动力!
  • 相关阅读:
    Reactor模式
    libcurl安装
    libcurl
    http概述
    添物不花钱学JavaEE(基础篇) --HTML
    Android BGABadgeView:BGABadgeFrameLayout(5)
    添物不花钱学计算机及编程(预备篇)— 总述
    Android BGABadgeView:BGABadgeImageView以及BGABadgeRelativeLayout(4)
    Android RoundedBitmapDrawable:Android官方的圆角图形图象实现方案
    Android BGABadgeView:BGABadgeLinearLayout以整体线性布局作为BadgeView(3)
  • 原文地址:https://www.cnblogs.com/bjlhx/p/2081770.html
Copyright © 2020-2023  润新知