fork download
  1. <?php
  2.  
  3.  
  4.  
  5. $dollars = 100;
  6. $exchangeRate = 32.24;
  7. $roubles = $dollars * $exchangeRate;
  8. echo "$dollars долларов можно обменять на $roubles рублей";
  9.  
  10. // your code goes here
  11. ?>
Success #stdin #stdout 0.01s 24448KB
stdin
Standard input is empty
stdout
100 долларов можно обменять на 3224 рублей