1
vote
2answers
117 views

Different values on writing the code in C and C++

I am solving a problem to find sum of all prime numbers till 2million, in C. I am continuously getting wrong answer (1179908154) but when i wrote the same code in c++, it gave the correct answer ...
0
votes
1answer
65 views

C return value is displaying some bizarre behavior

A fair warning — I'm very new to C, and there's some unpredictable behavior. I'm not sure how to begin troubleshooting this. I'm trying to solve one of the early Euler problems (to do with numerical ...
1
vote
3answers
120 views

Why did this prime factorisation algorithm give the correct answer even though there is a flaw?

The problem stated to me was this: "What is the largest prime factor of the number 600851475143 ?" The program is used to find the answer was exactly this using C: #include<math.h> // for ...
-1
votes
2answers
97 views

Even Fibonacci numbers in C, conundrum

Problem: Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... ...
-1
votes
2answers
171 views

Allocating large memory in C (Project Euler Prob)

I was trying to solve a problem using C on project euler click here Here is the code. It works fine for 10 values but for 1000 values it gives a wrong output. I noticed that it gives a right output ...
1
vote
1answer
149 views

Unable to process number 600851475143, but I can 13195 perfectly

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 ...
-1
votes
4answers
114 views

Reading individual digits from a number stored in a file

I'm currently working through Project Euler problems as a way of learning C and I'm having trouble with problem #8, the actual maths and main bit of program is fine but the method requires reading ...
3
votes
2answers
98 views

trouble with printf conversion long long

Hi ive been working on a project euler problem, which by their very nature coerce you to use data types with big storage. #include <stdio.h> #include <conio.h> #define num 600851475143 ...
1
vote
1answer
132 views

Optimization of my code in c for Project Euler # 23

i am solving Problem no 23 of project euler. I have used a simple logic , i am getting the correct answer but it is taking a great length of time to run the program. Is there any way i can optimize ...
1
vote
2answers
1k views

Find the sum of digits in 100 factorial in C without using Array

For solving project euler problem 20 to find the sum of digits in 100! i am running the following program , it is working for factorial of small numbers but not for 100.which data type should i use or ...
-1
votes
2answers
245 views

Project Euler #179

Problem: Find the number of integers 1 < n < 10^7, for which n and n + 1 have the same number of positive divisors. For example, 14 has the positive divisors 1, 2, 7, 14 while 15 has 1, 3, 5, ...
0
votes
3answers
119 views

Sieve of Eratosthenes wrong output

I was trying to find out the sum of all prime up to 2 million. So I wrote the following code for it: #include <math.h> #include <stdlib.h> #define limit 2000000 int main(void) { ...
5
votes
1answer
314 views

Project Euler #14

I am currently solving, Project Euler problem 14: The following iterative sequence is defined for the set of positive integers: n → n/2 (n is even) n → 3n + 1 (n is odd) Using the rule ...
0
votes
3answers
157 views

Project Euler no. 16

2^15 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26. What is the sum of the digits of the number 2^1000? I would like to solve the Project Euler problem No. 16. I am trying to save ...
-1
votes
5answers
780 views

project euler exercise 5 approach

Question: 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smallest positive number that is evenly divisible by all of the ...
0
votes
2answers
238 views

Why did my code fail to calculate the right answer? [closed]

I'm trying to solve Project Euler problem 160, which is to display the last five digits (before the trailing zeros) of the factorial of 1 trillion. I tested my code for smaller numbers up to 100k, and ...
1
vote
3answers
377 views

Big Prime Numbers in c

I doing another question from the Eular problems page. The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below two million. I've managed to write the code below ...
2
votes
1answer
364 views

Euler 160 : Find the non trivial 5 digits of the factorial

Given a number find the 5 digits before the trailing 0. 9! = 362880 so f(9)=36288 10! = 3628800 so f(10)=36288 20! = 2432902008176640000 so f(20)=17664 Find f(1,000,000,000,000) For ...
-1
votes
2answers
243 views

Wrong result in a project euler 31

I tried to solve project euler 31: In England the currency is made up of pound, £, and pence, p, and there are eight coins in general circulation: 1p, 2p, 5p, 10p, 20p, 50p, £1 (100p) and ...
2
votes
4answers
687 views

finding greatest prime factor using recursion in c

have wrote the code for what i see to be a good algorithm for finding the greatest prime factor for a large number using recursion. My program crashes with any number greater than 4 assigned to the ...
2
votes
2answers
343 views

Project Euler 29

Here's the question Consider all integer combinations of a^b for 2 ≤ a ≤ 5 and 2 ≤ b ≤ 5: 2^2=4, 2^3=8, 2^4=16, 2^5=32 3^2=9, 3^3=27, 3^4=81, 3^5=243 4^2=16, 4^3=64, 4^4=256, 4^5=1024 5^2=25, ...
1
vote
6answers
248 views

Project euler 8 in C

Find the greatest product of five consecutive digits in the 1000-digit number. 73167176531330624919225119674426574742355349194934 96983520312774506326239578318016984801869478851843 ...
1
vote
5answers
280 views

Project Euler 5

2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smallest positive number that is evenly divisible by all of the numbers from 1 ...
1
vote
1answer
302 views

Project Euler number 48

Okay so here's the problem statement. The series, 1^1 + 2^2 + 3^3 + ... + 10^10 = 10405071317. Find the last ten digits of the series, 1^1 + 2^2 + 3^3 + ... + 1000^1000? The question's pretty ...
4
votes
4answers
290 views

C scanf format string warning

I'm working on Euler #3 (http://projecteuler.net/problem=3). I think I've got the logic right, but I'm getting an error when trying to use scanf (and printf) with a long. I'm current trying to use %li ...
3
votes
1answer
219 views

Project Euler number 37

Okay, so here's the problem statement: The number 3797 has an interesting property. Being prime itself, it is possible to continuously remove digits from left to right, and remain prime at each ...
2
votes
1answer
194 views

Project Euler number 45

From Project Euler, problem 45: Triangle, pentagonal, and hexagonal numbers are generated by the following formulae: Triangle T_(n)=n(n+1)/2 1, 3, 6, 10, 15, ... Pentagonal ...
-3
votes
1answer
106 views

For loop bug because of if statement [closed]

So I'm making an app that finds Pythagorean triplets, My loop works however when I do checks to see if the values hold to be right angles, the loop doesn't print, but when I leave the check out and ...
0
votes
1answer
170 views

Collatz Conjecture code “bouncing” between 13 and 19

I'm trying to solve problem 14 on project euler, and my initial brute force attempt has me stumped. For some reason, the code encounters a cycle between 13 and 19. I don't think I can righteously ...
2
votes
2answers
629 views

Project Euler Problem 10 - Efficient Algorithm

I attempted Project Euler's problem 10 using the very easy algorithm and the running time looks like hours. So I googled for an efficient algorithm and found this by Shlomif Fish. The code is ...
2
votes
4answers
334 views

Problem in proper divisor algo

I wrote two algos to get the sum of the proper divisors of a given number,to find perfect number or abundant number. long sum_divisors_1(int a) { int i, t; long sum = 1; for (i = 2, t = ...
-1
votes
5answers
1k views

Project Euler Problem 4

I've created a solution to problem 4 on Project Euler. However, what I find is that placing the print statement (that prints the answer) in different locations prints different answers. And for some ...
0
votes
1answer
113 views

Project Euler:#14 Integer over-flow and Stack over-flow

unsigned long long terms ; unsigned long long test; unsigned long long digit = 1; unsigned long long max = 0; //cout<<sizeof(long)<<" "<<sizeof(int)<<endl; ...
2
votes
1answer
112 views

Issue with an early Euler problem in C - why am I getting output “nan”?

Maybe a small problem for this forum, but here goes: The ProjectEuler.net problem #2 is as follows: By considering the terms in the Fibonacci sequence whose values do not exceed four million, ...
1
vote
5answers
308 views

Euler Problem 3 - I need help with this small piece of C

I have started solving the problems of http://projecteuler.net/, but I can't seem to work out problem # 3. I think it will be fairly easy for the most of you. #include <stdio.h> #include ...
2
votes
3answers
914 views

How to divide stupidly big numbers in C

Am learning C and thought that Project Euler problems would be a fun and interesting way to learn (and would kill 2 birds with 1 stone because it would keep me thinking about maths as well) but I've ...
1
vote
3answers
720 views

Project Euler Problem 17 - What's wrong?

I decided to try project euler problem 17 today, and I quickly wrote a pretty fast code in C++ to solve it. However, for some reason, the result is wrong. The question is: If the numbers 1 to 5 are ...
4
votes
7answers
3k views

Need help optimizing algorithm - sum of all prime numbers under two million

I'm trying to do a Project Euler question. I'm looking for the sum of all prime numbers under 2,000,000. This is what I have... int main(int argc, char *argv[]) { unsigned long int sum = 0; ...
3
votes
5answers
854 views

Find the sum of all the even-valued terms in the sequence which do not exceed four million

Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... I made the program ...
1
vote
5answers
4k views

Find the sum of all the multiples of 3 or 5 below 1000

If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. I have the following code but the answer does not match. ...
2
votes
5answers
366 views

Power of 2, trying to reach 2^1000, Segmentation fault

I am building a program which will multiply by 2, and reach long accurate numbers. Here I build a program in which each digit is stored in a different variable. When I compile the program, and I type ...
19
votes
5answers
870 views

How to improve the performance of this Haskell program?

I'm working through the problems in Project Euler as a way of learning Haskell, and I find that my programs are a lot slower than a comparable C version, even when compiled. What can I do to speed up ...
5
votes
3answers
609 views

Is this Project Euler #5 solution more efficient than a known one?

Here's my solution to Project Euler problem #5: #include <stdio.h> #include <stdint.h> #define N 20 int main( int argc, char* argv[] ) { uint64_t r = 1; uint64_t i, j; for( i ...
5
votes
7answers
4k views

Finding the largest palindrome of the product of two three digit numbers problem

So on Project Euler the Problem 4 states the following: A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 99. ...
-3
votes
2answers
365 views

How to select groups of numbers with the same sum from an array

Well i have a probleme with some puzzles , However i want to solve this puzzle and i need your help , i have an array from ten Numbers(Or More),for example : arr[1,2,3,4,5,6,7,8,9,10] i want a ...
1
vote
4answers
143 views

storing known sequences in c

I'm working on Project Euler #14 in C and have figured out the basic algorithm; however, it runs insufferably slow for large numbers, e.g. 2,000,000 as wanted; I presume because it has to generate the ...
2
votes
4answers
194 views

computing Pythagorean triplets with c

I'm trying to solve Project Euler #9, which is http://projecteuler.net/index.php?section=problems&id=9. I've looked through this code, and the logic seems right…but I'm not getting any output at ...
11
votes
11answers
7k views

Find Pythagorean triplet for which a + b + c = 1000

A Pythagorean triplet is a set of three natural numbers, a < b < c, for which, a2 + b2 = c2 For example, 32 + 42 = 9 + 16 = 25 = 52. There exists exactly one Pythagorean triplet for which a ...
7
votes
6answers
5k views

Project Euler Question 14 (Collatz Problem)

The following iterative sequence is defined for the set of positive integers: n ->n/2 (n is even) n ->3n + 1 (n is odd) Using the rule above and starting with 13, we generate the following sequence: ...
3
votes
5answers
1k views

Project Euler Problem# 276 - Primitive Triangles

I tried to solve problem# 276 from Project Euler, but without success so far. Consider the triangles with integer sides a, b and c with a ≤ b ≤ c. An integer sided triangle (a,b,c) is called ...

1 2