js实现分解质因数


 对266进行质因数的分解:

	var p=fenjie(266);
	for (index in p) {
		console.dir(index+"  "+p[index]);
	}

 运行结果:266=2*7*19

你可能感兴趣的:(JavaScript)