79551903

Date: 2025-04-03 02:58:26
Score: 2.5
Natty:
Report link

<?php

$x = 10;

$y = 20;

echo “before swapping, number are: ”;

echo $x;

echo “        ”;

echo $y:

echo “\n”

/*swapping*/

$x = $x  + $y;

$y = $x  + $y;

$x = $x  + $y;

echo “<Br> After swapping, numbers are: ”;

echo $x;

echo “   ”

echo $y;

?>

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Manmeetkaur Rooprai