Created
September 9, 2018 11:47
-
-
Save ArtemFedorchuk/d3e5cec489c91ff1d73822c47b6af062 to your computer and use it in GitHub Desktop.
калькулятор
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| function myFunction() { | |
| var grn = 'ГРН', | |
| number = prompt('Введите количество гривен'), | |
| procent = prompt('Введите процент, который нужно узнать от количества гривен'), | |
| result = number /100 * procent; | |
| number += grn, | |
| procent += '%', | |
| result = 'от ' +number+ '. ' +procent+ ' составляет = ' +result+ 'ГРН'; | |
| alert(result); | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment