欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C#将一个正整数分解质因数

程序员文章站 2022-03-23 09:20:30
...

C#将一个正整数分解质因数

public static void Fun12()
        {
            int count = Convert.ToInt32(Console.ReadLine());
            int startCount = count;
            for (int i = 2; i < count; i++)
            {
                while(count!=i)
                {
                    if (count % i == 0)
                    {
                        Console.Write("{0}*", i);
                        count /= i; 
                    }
                    else
                        break;
                }
            }
            Console.Write("{0}={1}", count,startCount);
        }