【C++ 程序】 质因数分解

程序

#include <iostream>
#include <vector>
#include <cmath>
using namespace std;

vector<unsigned> prime; // a vector that contains prime numbers

void prime_def(int n) // define the vector
{
	for (int ii = 2; ii <= n; ii++)
	{
		int index = 1;
		for (int j = 2; j <= sqrt(ii); j++)
			if (ii % j == 0)
				index = 0;
		if (index == 1) prime.push_back(ii);
	}
}

void fact(int n)
{
	if (n == 1) cout << 1 << endl;
	else
	{
		int alr = 1;
		if (n == *(--prime.cend()))
			// If n is a prime number, just print itself.
			// Otherwise in the for loop,
			// subscript will be out of range
			// because when doing i++,
			// it will go to one beyond the end.
			cout << n;
		else
		{
			for (size_t i = 0; prime[i] <= n / alr; i++)
			{
				int state = 0;
				while (state == 0)
				{
					if (n / alr % prime[i] == 0)
					{
						cout << ((alr == 1) ? "" : " * ") << prime[i];
						alr *= prime[i];
					}
					else state = 1;
				}
			}
		}
		cout << endl;
	}
}

int main()
{
	int n;
	cin >> n;
	cout << n << " = ";
	prime_def(abs(n));
	if (n < 0)
	{
		cout << "- ";
		n = -n; // change into the positive
	}
	fact(n);
	return 0;
}

输出示例

Output

分析

如果是质数的时候很容易出错。因为会走到最后一个vector空间的外面,这样就炸了(subscript out of range)。
解决方案:如果就是质数vector中的最后一个,即就是质数,直接输出。(26行有的判断)


ALL RIGHTS RESERVED © 2020 Teddy van Jerry
欢迎转载,转载请注明出处。


See also

【C++ 程序】 井字棋游戏(人 VS 人)
【C++ 程序】 井字棋游戏(人 VS Lv1电脑)
【C++ 程序】 井字棋游戏(人 VS Lv2电脑)
【C++ 程序】 井字棋游戏(人 VS Lv3电脑)
【C++ 程序】 井字棋游戏(人 VS Lv3电脑)(战绩统计版)
【C++ 程序】 五子棋游戏(人 VS 人)
【C++ 程序】 五子棋游戏(人 VS Lv1电脑)(思路及框架,内容待填充)
【C++ 程序】 随机数
【C++ 程序】 移动迷宫游戏
【C++ 程序】 贪吃蛇游戏
【C++ 程序】 数字推盘游戏(15-puzzle)
【C++ 程序】 2048游戏
【C++ 程序】 井字棋游戏(人 VS 人)(EasyX 图形界面)
【C++ 程序】 井字棋游戏(人 VS Lv3电脑)(战绩统计版)(EasyX 图形界面)
【C++ 程序】 2048游戏(EasyX 图形界面)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值