Guest User

Untitled

a guest
Dec 11th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. $a = 1;
  2. while ($a <= 10) {
  3.     if ($a % 2 == 0) echo $a .' JE SUDÉ ČÍSLO<br />';
  4.     else echo $a .' není sudé číslo<br />';
  5.  
  6.     $a++;
  7. }
Add Comment
Please, Sign In to add comment