fork download
  1. <?php
  2.  
  3.  
  4. $anonHeight = 169;
  5.  
  6. $classmates = array(
  7. 'Антон' => 172,
  8. 'Семен' => 165,
  9. 'Лена' => 189,
  10. 'Иван' => 171,
  11. 'Петр' => 182,
  12. 'Сидор' => 176,
  13. 'Аня' => 180,
  14. 'Таня' => 179,
  15. 'Маня' => 171
  16. );
  17.  
  18. $number = 0;
  19.  
  20.  
  21. foreach ($classmates as $name => $height) {
  22. echo "Имя: {$name}, рост: {$height} см.\n";
  23. if ($height < $anonheight){
  24. $number++;
  25. echo "В классе {$number}";
  26. }
  27.  
  28. }
  29.  
  30. echo "В классе {$number} человек выше анона\n";
  31.  
Success #stdin #stdout #stderr 0.01s 52488KB
stdin
Standard input is empty
stdout
Имя: Антон, рост: 172 см.
Имя: Семен, рост: 165 см.
Имя: Лена, рост: 189 см.
Имя: Иван, рост: 171 см.
Имя: Петр, рост: 182 см.
Имя: Сидор, рост: 176 см.
Имя: Аня, рост: 180 см.
Имя: Таня, рост: 179 см.
Имя: Маня, рост: 171 см.
В классе 0 человек выше анона
stderr
PHP Notice:  Undefined variable: anonheight in /home/rcVHDN/prog.php on line 24
PHP Notice:  Undefined variable: anonheight in /home/rcVHDN/prog.php on line 24
PHP Notice:  Undefined variable: anonheight in /home/rcVHDN/prog.php on line 24
PHP Notice:  Undefined variable: anonheight in /home/rcVHDN/prog.php on line 24
PHP Notice:  Undefined variable: anonheight in /home/rcVHDN/prog.php on line 24
PHP Notice:  Undefined variable: anonheight in /home/rcVHDN/prog.php on line 24
PHP Notice:  Undefined variable: anonheight in /home/rcVHDN/prog.php on line 24
PHP Notice:  Undefined variable: anonheight in /home/rcVHDN/prog.php on line 24
PHP Notice:  Undefined variable: anonheight in /home/rcVHDN/prog.php on line 24