Few code standards. Remove composer vendor folder

This commit is contained in:
2025-04-04 12:26:47 +00:00
parent ed83a3afc3
commit 4dd1683e1a
24 changed files with 69 additions and 1152 deletions

View File

@ -0,0 +1,15 @@
<?php
$num = 44;
for($i=0; $i<20; $i++)
{
$sum = 0;
$number = (string)$num;
for($c=0; $c < strlen($number);$c++)
{
$sum +=(int)$number[$c] * (int)$number[$c];
}
echo $sum . PHP_EOL;
$num = $sum;
}