Auf Thema antworten

Was stimmt gier noch nicht?


[code]public static int power2(int x, int y) {

        if (x==1) {

            return x;

        } else {

            return x*(x^(y-1));

        }

    }[/code]



Oben