123456789101112131415161718192021222324 |
- let currency = prompt('Укажите валюту:').toLowerCase();
- let sale = confirm('Укажите тип операции - продажа или покупка?');
- let exchangeRate = null;
- let exchangeRateSymbol = '';
- switch (currency) {
- case 'usd':
- exchangeRate = sale ? 39.15 : 38.45;
- exchangeRateSymbol = '$';
- break;
- case 'eur':
- exchangeRate = sale ? 39.55 : 38.55;
- exchangeRateSymbol = '€';
- break;
- default:
- alert('Неверно указанная валюта');
- }
- if(currency === 'usd' || currency === 'eur' ) {
- let quantity = +prompt('Укажите величину в гривне для обмена');
- alert(`${quantity} грн по курсу ${sale ? 'продажи' : 'покупки'} в ${currency} = ${(quantity / exchangeRate).toFixed(2)}${exchangeRateSymbol}`);
- }
|