Advertisement
Guest User

kondix

a guest
Jun 2nd, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. <?php
  2.  
  3. $x = 0;
  4. if($x<2){
  5. $wynik = $x*$x;
  6. echo $wynik;
  7. }
  8. if($x>=2){
  9. $wynik = $x+2;
  10. echo $wynik;
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement