Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. //table of nine <9> with explanation
  3. $table=9; //starting int value
  4. $num=1; //num
  5. while ($table<=90){ //until num
  6. echo "9 × ".$num." is equal to ".$table."." . "\n"; //output format
  7. $table+=9; //value to be addded in each interval
  8. $num++; //num value add for chronological order
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement