Prime Factorization not printing the last digit | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 1

Prime Factorization not printing the last digit

why does my code not showing the last digit of prime factor ex. 20 = 2 * 5 instead 2 * 5 * 2 https://code.sololearn.com/c92LJdByFGH1/?ref=app

2nd Jan 2018, 2:30 AM
John Nehry C. Dedoro
John Nehry C. Dedoro - avatar
7 Antworten
+ 1
All your code does is check which prime numbers are the factors. for complete factorization, you should iterate the loop such that instead of checking the divisibility of a prime art the number n, you should let the number n be modified each time the loop iterates. Check for number /(previous divisor) and run the loop for the same divisor until its not divisible.
2nd Jan 2018, 2:45 AM
Vihang Puranik
+ 1
if add while(number != 0) the output doesnt print
2nd Jan 2018, 2:48 AM
John Nehry C. Dedoro
John Nehry C. Dedoro - avatar
+ 1
try to check again my code please
2nd Jan 2018, 2:48 AM
John Nehry C. Dedoro
John Nehry C. Dedoro - avatar
+ 1
can you show me how im confused with that but if i S.O.P the i inside the for loop it will appear 2 5 2 and thats the number i only want to add in prime string = ""; prime = prime + i + "*" ; i want to print out like this 2 * 5 * 2 * but it print 2 * 5 * only
2nd Jan 2018, 3:08 AM
John Nehry C. Dedoro
John Nehry C. Dedoro - avatar
+ 1
Leave the for loop increment instruction blank: for(int i = 2;i <= input_number;). Then inside the code, add another condition check at the end: {if(input_number % i != 0){i++}} Then the code should work.
2nd Jan 2018, 3:14 AM
Vihang Puranik
0
Do not increment the number 'i' in the for loop conditions. Only when the remainder is not 0 then only you should increment i. In your case, If the number were 40, it would have given 2 and 4 as factors as there is no check if the divisor was prime.
2nd Jan 2018, 3:03 AM
Vihang Puranik
0
replace "while(input_number != 0)" by "while(input_number != 1)".
2nd Jan 2018, 5:58 PM
Вадим Сухотин (Vadim Sukhotin)
Вадим Сухотин (Vadim Sukhotin) - avatar