我有這個代碼的工作位,但它只是當我應用大數字時掛起。基本上我正在制定最重要的因素。 它的計算成本很高,因爲我試圖找到的主要尺寸(eulers project) 我的weenie小筆記本電腦無法處理這個問題。 #include <stdio.h>
#include <math.h>
#include <stdbool.h>
/* My code is done on the assumpti
我試圖找到13195的最大素數因子的主要因素: def problem3():
divisors = []
primes = []
num = 13195
for a in range(2, num):
if num % a == 0:
divisors.append(a)
print divisors #This is
我是C#的初學者。 我試圖創建一個計算n的素因分解的程序。它的工作。那就是: Console.WriteLine("Write a number.");
int n = int.Parse(Console.ReadLine());
bool[] p = new bool[(int)Math.Floor(Math.Sqrt(n))+2];
for(int i
問題 這是我正在嘗試解決的問題。 13195的主要因素是5,7,13,29。什麼是數字600851475143的最大素因子? def prime_calc():
num = raw_input("What is the number you want the primes for?")
prim_num = []
x = 2
while num/x > 1:
這是一個因式分解計算器:http://www.mathwarehouse.com/arithmetic/numbers/prime-number/prime-factorization-calculator.php 當我在裏面輸入一個數字,然後點擊「計算」,我的電腦將嘗試每一個素數來劃分它(到它的平方根)得到它的主要因式分解。 但我的問題是關於當我輸入一個非常大的數字... 的Mozilla Fi