码迷,mamicode.com
首页 > Windows程序 > 详细

C#质因子(自己别扭的逻辑。。)

时间:2018-01-09 10:20:08      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:长度   static   array   自己   break   int   color   遍历   return   

 static int length1(int num) //想着要定义一个函数取,质因子数组的长度
       {
             int arrayLength = 0;
 
           for (int i = 2; i <= num; i++)  //for循环中I 不会归零 只能遍历一次
            {

                 if (num == i)
                 {
                    arrayLength++;
                    break;//只要 因子等于i了,说求到头了,跳出循环(要不还会执行下一个IF)
                }
                if (num % i == 0)
                {
                     arrayLength++;
                     num = num / i;
                     i = 1;//因为得出的新的num 需要重新与i=2比较,所以手动赋值为1。。
                 }
             }
             return arrayLength;
        }

 

C#质因子(自己别扭的逻辑。。)

标签:长度   static   array   自己   break   int   color   遍历   return   

原文地址:https://www.cnblogs.com/xiaozhushifu/p/8249925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!