Facebook
From RABKA ZDROJ, 7 Years ago, written in Plain Text.
This paste is a reply to RAPKA from RABKA ZDROJ - go back
Embed
Viewing differences between RAPKA and Re: RAPKA
function potega($a, $b) {
        
        $k=$a;

        for ($i=1;$i<$b;$i++) {
                $a=$a*$k;
        }
        print($a);

}
potega(2,2);
potega(2,4);
potega(2,534);


?>