最长连续因子(贪心) 题解:
#include<bits/stdc++.h>
using namespace std;
int n;
bool cheak(int x)
{
if(n % x == 0) return true;
return false;
}
int main()
{
scanf("%d", &n);
for(int i = 2; i <= n; i ++)
{
if(cheak(i) && cheak(i - 1)) cout << i << " ";
else return 0;
}
}
登录后发布评论
暂无评论,来抢沙发