- 分享
1 5
- 2023-8-2 10:54:19 @
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a;
cin>>a;
for(int i=a; i>=2; i--)
{
if(a%i==0)
{
int t=0;
for(int j=2; j*j<=i; j++)
{
if(i%j==0)
{
t=1;
break;
}
}
if(t==0)
{
cout<<i;
break;
}
}
}
return 0;
}
0 comments
No comments so far...