Browse Source

implemented basic function for the ggT

remotes/origin/ggT
cxnnqr 11 months ago
parent
commit
8bb76200ce
  1. 11
      src/ggT/ggT.c

11
src/ggT/ggT.c

@ -1,4 +1,13 @@
#include <stdio.h>
int ggT(int a, int b);
int ggT(int a, int b){
while(a != b){
if(a < b){
b -= a;
} else {
a -= b;
}
}
return a;
}
Loading…
Cancel
Save