codeup27936 因式分解

codeup27936 因式分解

时空限制    1000ms/128MB

题目描述

输入一个正整数并因式分解,输出分解等式。如输入60,则输出:60=2*2*3*5。

输入

输入一正整数n(n在int范围内)。

输出

输出其因式分解.

样例输入

60

样例输出

60=2*2*3*5

 

代码

#include
#include
using namespace std;

int main(){
	int n;
	cin>>n;
	cout<1 && j>t) { cout<

你可能感兴趣的:(循环结构)