Question #53625, Programming, Perl, for completion
Dear expert, if you are ready to complete the question below please confirm your readiness.
what are two other ways you could write
$x = $x + 1;Answer:
$x = $x + 20;
print "first method = " . ($x = $x + 1) . ", second method = " . ($x += 1);TZ
first method = 22 second method = 22
C:\>
Comments