Guest User

Untitled

a guest
Nov 18th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. <?php
  2. $a=rand(1,100);
  3. $b=rand(1,100);
  4. $c=$a+$b;
  5. echo $a.'+'.$b.'='.$c.'<br>';
  6. $x=1;
  7. while($x<=10){
  8. $n=$x%2;
  9. if($n==0){echo $x." ";}
  10. $x++;
  11. }
  12. ?>
Add Comment
Please, Sign In to add comment