Advertisement
desislava_topuzakova

01.Cherry Jars

Apr 16th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. $kompotJars = readline() + 1;
  3. $konfJars = readline() + 1;
  4.  
  5. $cherriesKompot = ($kompotJars * 0.300) + 0.05*($kompotJars * 0.300);
  6. $cherriesKonf = ($konfJars * 0.650) + 0.1 * ($konfJars * 0.650);
  7. $sum = ($cherriesKompot + $cherriesKonf) * 3.20;
  8.  
  9. printf("%.2f",$sum);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement