|
@@ -207,6 +207,19 @@ else {
|
|
|
}
|
|
|
|
|
|
|
|
|
+////Задание на синий пояс/////////////////////////////////////
|
|
|
+let currency = prompt("usd или eur", "");
|
|
|
+let currency1;
|
|
|
+let rations = {
|
|
|
+ usd: 40,
|
|
|
+ eur: 41,
|
|
|
+}
|
|
|
+let uah = prompt("укажите сумму в гривнах", "")
|
|
|
+currency1 = uah / rations[`${currency}`]
|
|
|
+alert(`вы можете купить ${currency1} ${currency}`)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
////real data/////////////////////////////////////////////////
|
|
|
var currency = prompt("usd или eur", "").toLowerCase();
|
|
|
var uah = prompt("укажите сумму в гривнах")
|
|
@@ -217,6 +230,7 @@ fetch('https://open.er-api.com/v6/latest/' + currency)
|
|
|
})
|
|
|
|
|
|
|
|
|
+
|
|
|
////Задание на черный пояс////////////////////////////////////
|
|
|
let user = +prompt("введите число для старта, где камень - 1 , ножницы - 2 , бумага - 3");
|
|
|
let comp = Math.ceil(Math.random() * 3);
|