博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Project Euler】3 第三题
阅读量:5965 次
发布时间:2019-06-19

本文共 982 字,大约阅读时间需要 3 分钟。


//The prime factors of 13195 are 5, 7, 13 and 29.
        //What is the largest prime factor of the number 600851475143 ?
        static void Main(string[] args)
        {
            //int[] number = new int[100];
            long[] number = new long[1228];                  //通过count计数得到容器一共收录1228个long型数据
            ArrayList list = new ArrayList();
            //int count = 0;
            for (int i = 3; i < 10000; i++)
            {
                int index = -1;
                for (int j = 2; j < i; j++)
                {
                    if (i % j != 0 && i != j)
                    {

                    }

                    else
                    {
                        index += 1;
                    }
                }
                if (index == -1)
                {
                    list.Add(i);
                    //Console.WriteLine(i);
                    //count += 1;
                }
            }
            long num = 0;
            for (int i = 0; i < 1228; i++)
            {
                string str = list[i].ToString();
                num = long.Parse(str);
                //Console.WriteLine(num);
                number[i] = num;
            }
            //Console.WriteLine(count);                  //以上均为计算10000以内的所有的所有质数代码

            //int max = 13195;

            long max = 600851475143;
            for (int i = 0; i < 1228; i++)
            {
                if (max % number[i] == 0)
                {
                    Console.WriteLine(number[i]);
                    max = max / number[i];               //如果该值除以某质数余数为0,则进行除法运算更换该值

                }

            }
        }

版权声明:本文为 NoMasp柯于旺 原创文章,如需转载请联系本人。

转载于:https://www.cnblogs.com/NoMasp/p/4786199.html

你可能感兴趣的文章
推荐一款图片轮换jQuery插件
查看>>
Reading papers_6(Pattern Recognition And Machine Learning一书,ing...)
查看>>
HDU 3441 Rotation
查看>>
[zz]KVM 虚拟机故障排除一例
查看>>
hadoop 权威指南学习笔记ing(1)
查看>>
从代码中抽离数据的原则
查看>>
[Bootstrap] 8. 'Collapse', data-target, data-toggle & data-parent
查看>>
Android面向HTTP协议发送post请求
查看>>
125 Valid Palindrome
查看>>
湾区见闻
查看>>
php通过数组存取mysql查询语句的返回值
查看>>
oracle用户管理的完全恢复5:控制文件损坏(控制文件前后内容未改变)
查看>>
C#中的关键字
查看>>
【水】HDU 2099——整除的尾数
查看>>
adf常用方法总结
查看>>
MongoDB的C#驱动基本使用
查看>>
开源:秋式广告杀手源码
查看>>
Android开发之Canvas rotate方法释疑
查看>>
Cors 跨域Access-Control-Allow-Origin
查看>>
[React] React Router: Router, Route, and Link
查看>>