Department of Computer Science | Institute of Theoretical Computer Science | CADMO

Theory of Combinatorial Algorithms

Prof. Emo Welzl and Prof. Bernd Gärtner

// Informatik - Serie 12 - Challenge 129 // Program: GunduzEkrem.cpp // Autor: Ekrem Gunduz #include #include void f (const unsigned int i) { if (i == 0) ifm::forward(); else { f(i-1); ifm:: forward (1); ifm:: left(60); ifm:: forward (1); f(i-1); ifm:: right (75); } } int main () { f(15); return 0; }