Write a program in php to print the multiplication table of 9:
Answer:
Answer:
<? php
define('a', 9);
for($i=1; $i<=10; $i++)
{
echo $i*a;
echo '<br>';
}
?>
define('a', 9);
for($i=1; $i<=10; $i++)
{
echo $i*a;
echo '<br>';
}
?>
google.com, pub-4617457846989927, DIRECT, f08c47fec0942fa0
No comments:
Post a Comment