php7-mysql-data/Kapitel_2/Lektion_9/6_potenzen.php
2016-08-21 00:15:10 +02:00

6 lines
50 B
PHP

<?php
echo pow(2, 3);
echo '<br>';
echo 2 ** 3;