2
votes
1answer
160 views

GCD algorithms for arbitrary-precision arithmetic

I am completely stuck with this question, so I am looking for any help. I think everybody knows about basic GCD computation algorithms like binary or euclidean GCD. It is not a problem to implement ...
2
votes
1answer
89 views

GCD computation issues with GNU MP Library

I have a question about GNU MP, could you please help me how to proceed with that. I using "The GNU Multiple Precision Arithmetic Library" Edition 5.1.1 on Windows. (MinGW\gcc + MSYS) There is an ...
3
votes
2answers
189 views

Calculating greatest common divisor [closed]

I have written the following function to calculate GCD of floating point numbers, but when I run this for the input (111.6, 46.5), the calculation of fmod(a,b) in the funciton starts giving the wrong ...
1
vote
3answers
140 views

Implement GCD correctly with structs in C

I'm implementing a very simple computer algebra system in c. I have some problem with my program crashing after a while. The idea is having an expression like 3^(21+8^(3^100)) + 4 and see that it ...
1
vote
1answer
124 views

Assigment of 0 to %ecx register

In the label .L0, when I check the value of %eax register, I get the correct value. But when I check the value of the ecx register, it gives me zero. I dont know why. Perhaps this is the reason I get ...
0
votes
2answers
485 views

Assembly language program to find the GCD - Floating point exception

With this program, I am intending to find the GCD of two numbers. But the result I get is "Floating point exception(core dumped)". What is the problem? The code I am trying to generate is int main() ...
-6
votes
1answer
158 views

Greatest common denominator (eucilid method) in C [closed]

I keep getting errors with my implementation. I have 3 files, the .c file includes the funciton, the demo file contains the implementation. My work is being tested by an online grader and gives me ...
3
votes
1answer
111 views

Why is TI-Basic so slow?

I decided to implement a program that can find the GCD of any two numbers (including non-integers) in TI-Basic. I've used this just fine in Java, so I know it works. It works just fine in TI-Basic, ...
0
votes
3answers
1k views

LCM of two numbers

I am getting wrong result for my LCM program. Ifirst find gcd of the numbers and then divide the product with gcd. int gcd(int x, int y) { while(y != 0) { int save = y; y = x % y; x ...