- 质因数
- 2015-08-17 11:21:13 @
#include <cmath>
#include <cstdio>
#include <iostream>
#include <algorithm>
using namespace std;
int n,i,temp;
int main()
{
cin>>n;
for (i=1;i<=trunc(sqrt(n));i++)
{
if (n%i==0) temp=i;
}
cout<<n/temp<<endl;
}
1 条评论
-
t14t41t LV 10 @ 2015-08-17 17:09:27
貌似i应该从2开始吧。。。
- 1
信息
- ID
- 1773
- 难度
- 3
- 分类
- (无)
- 标签
- (无)
- 递交数
- 2133
- 已通过
- 1044
- 通过率
- 49%
- 被复制
- 4
- 上传者