Advertisement
kdacmc

Number test

Jan 11th, 2021
827
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. print "This is number test\n";
  3. print "2 * 2: ";
  4. print 2 * 2;
  5. print "\n1 / 0: ";
  6. print 1 / 0;
  7. print "\n-1 / 0: ";
  8. print -1 / 0;
  9. print "\n0 / 0: ";
  10. print 0 / 0;
  11. print "\n2 / 2: ";
  12. print 2 / 2;
  13. print "\nEnd!";
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement