码迷,mamicode.com
首页 > 其他好文 > 详细

一个数n的最大质因子

时间:2014-11-29 17:23:42      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   for   div   log   bs   

 

 

 1 #include<cstdio>
 2 #include<cmath>
 3 using namespace std;
 4 
 5 #define Max(x, y) (x > y ? x : y)
 6 
 7 int main()
 8 {
 9     int n, m;
10     while(~scanf("%d",&n)) //1没有最大质因子
11     {
12         int tn = n;
13         int mx = -1;
14         for(int i=2; i*i<=n; i++)
15         {
16             if(n%i==0)
17             {
18                 mx = Max(mx, i);
19                 while(n%i==0) n /= i;
20             }
21         }
22         mx = Max(mx, n);
23         printf("%d\n",mx);
24     }
25     return 0;
26 }

 

一个数n的最大质因子

标签:style   blog   io   color   sp   for   div   log   bs   

原文地址:http://www.cnblogs.com/khan724/p/4131055.html

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