static int gcd (int x, int y) { if (0==y) return x; else return gcd(y,x%y); }
Testtreiber: 108 Aufrufe, Laufzeit: