标签:std bsp amp 时间 style ret 正整数 param blog
已知正整数 n 是两个不同的质数的乘积,试求出较大的那个质数。
21
7
也就是n只能分成(x(較小),y
代碼實現:
1 #include<cstdio> 2 int n; 3 int main(){ 4 scanf("%d",&n); 5 for(int i=2;i<=n;i++){ 6 if(n%i) continue; 7 printf("%d\n",n/i); 8 return 0; 9 } 10 }
。。。
标签:std bsp amp 时间 style ret 正整数 param blog
原文地址:http://www.cnblogs.com/J-william/p/6156417.html