Create the following drawing using recursion.
Complete the programme code so that a flake is drawn.
void figur(double seite) { for (int i = 0; i < 6; i++) { forward(seite); figur(seite / 3); back(seite); right(60); } }