867. 分解质因数

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了867. 分解质因数相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
https://www.acwing.com/problem/content/description/869/

#include<cstdio>
#include<iostream>
using namespace std;
void check(int x)
{
	for(int i=2;i<=x/i;i++)
	{
		int s=0;
		while(x%i==0) x/=i,s++;
		if(s) cout<<i<<" "<<s<<endl;
	}
	if(x!=1) cout<<x<<" "<<1<<endl;
}
int main(void)
{
	int m; cin>>m;
	while(m--)
	{
		int x; cin>>x;
		check(x);
		cout<<endl;
	}
	return 0;
}

以上是关于867. 分解质因数的主要内容,如果未能解决你的问题,请参考以下文章

代码实现:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5

质因数分解

质因数分解

分解质因数

C语言,分解质因数

C语言,质因数分解