Basically, I've been trying to complete the 3rd question on projecteuler.net. The example gives me the number 13195 which this program (writting in C) accurately returns a prime factor tree of 5 7 13 29, but when I input the question number 600851475143 nothing happens. I have also made a similar program in Python about a year ago and that solves the factor tree for 600851475143. I think it has to do with the data types I'm using but I can't find a reliable source for information on that and how to do modulo with floats/doubles/big thingies.
Thanks,
Clement
Code:
//
// main.c
// Project Euler Question 3
//
// Created by Cwbh on 2/11/13.
// Copyright (c) 2013 Cwbh. All rights reserved.
//
#include <stdio.h>
#include <math.h>
int is_prime(int x);
int main(int argc, const char * argv[])
{
int pft[100];
int number;
int pointerloc = 0;
printf("Enter the number to find the Prime Factor Tree of: ");
scanf("%d", &number);
if (is_prime(number) == 0) {
for (int i = 2; i < number; i++) {
if (number%i == 0 && is_prime(i) == 1) {
pft[pointerloc] = i;
pointerloc++;
}
}
}else{
printf("You've entered a prime number to begin with!");
}
for (int i = 0; i < pointerloc; i++) {
printf("%d\n",pft[i]);
}
return 0;
}
int is_prime(int x){
int prime = 1;
for (int i = 2; i < x; i++) {
if (x%i == 0) {
prime = 0;
break;
}
}
return prime;
}