fork download
  1. <?php
  2.  
  3. function isWorkDay($num) {
  4. return ($num % 4) < 2;
  5. };
  6.  
  7. $s = '';
  8. for ($i = 0; $i < 29; $i++) {
  9. $s .= isWorkDay($i) ? 'Р' : 'В';
  10. }
  11.  
  12. echo($s);
  13. echo(mb_strlen($s));
  14.  
Success #stdin #stdout 0.03s 52472KB
stdin
Standard input is empty
stdout
РРВВРРВВРРВВРРВВРРВВРРВВРРВВР29