update
This commit is contained in:
14
misc/szorzotabla.php
Normal file
14
misc/szorzotabla.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<html>
|
||||
<head> <title>Szorzotabla</title></head>
|
||||
<body>
|
||||
<?php
|
||||
for($i = 1; $i <= 10; $i++){
|
||||
for($j = 1; $j <= 10; $j++){
|
||||
$value = $i * $j;
|
||||
echo($value." ");
|
||||
}
|
||||
echo("<br>" );
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user