L1-006. 连续因子
Posted code666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了L1-006. 连续因子相关的知识,希望对你有一定的参考价值。
#include <iostream>
using namespace std;
#include <cmath>
int main()
{
int n, t, i, j;
int num;
int s;
cin >> n;
t = n;
num = 0, s = 0;
for (i = 2; i <= sqrt(n) + 1; i++)
if (n%i == 0)
{
t = n / i;
for (j = i + 1; j <= sqrt(n) + 1; j++)
if (t%j == 0) t = t / j;
else break;
if (j - i>num) num = j - i, s = i;
}
if (num == 0) { num = 1; s = n; }
cout << num << endl;
cout << s;
for (int i = s + 1; i <= s + num - 1; i++)
cout << "*" << i;
cout << endl;
return 0;
}
以上是关于L1-006. 连续因子的主要内容,如果未能解决你的问题,请参考以下文章
题解PTA团体程序设计天梯赛L1-006 连续因子 (20 分) Go语言|Golang
L1-006 连续因子 (20分) 一个正整数 N 的因子中可能存在若干连续的数字。例如 630 可以分解为 3×5×6×7,其中 567 就是 3 个连续的数字。给定任一正整数 N,要求编写程序