INPUT:
<html>
<head><h1>Check whether even or odd</h1></head>
<body>
<H1>
<?php
$sanket_a=10;
if($sanket_a%2==0)
echo $sanket_a." is an Even number";
else
echo $sanket_a." is an Odd number";
?>
</h1>
</body>
</html>
No comments:
Post a Comment