-
Notifications
You must be signed in to change notification settings - Fork 0
/
HW_8.1.js
81 lines (58 loc) · 2.53 KB
/
HW_8.1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
const cofeLatte = {
cream: 50,
espresso: 50,
milk: 150,
sugar: 10
};
let whatHave = {};
let firstIngredients;
let secondIngredients;
let thirdIngredients;
let fourthIngredients;
let portion;
function getСofe() {
firstIngredients = +prompt("Сколько у тебя есть эспрессо", "");
if (firstIngredients === cofeLatte.espresso || firstIngredients != null && firstIngredients != "" && firstIngredients.length <= 2) {
console.log("Будем варить кофе");
whatHave.espresso = firstIngredients;
} else {
alert("Уверен, что столько нужно для лате?");
whatHave.espresso = firstIngredients;
}
secondIngredients = +prompt("Сколько у тебя есть молока", "");
if (secondIngredients === cofeLatte.milk || secondIngredients != null && secondIngredients != "" && secondIngredients.length <= 3) {
console.log("Будем варить кофе");
whatHave.milk = secondIngredients;
} else {
alert("Уверен, что столько нужно?");
whatHave.milk = secondIngredients;
}
thirdIngredients = +prompt("Сколько у тебя есть пены ?", "");
if (thirdIngredients === cofeLatte.cream || thirdIngredients != null && thirdIngredients != "" && thirdIngredients.length <= 2) {
console.log("Будем варить кофе");
whatHave.cream = thirdIngredients;
} else {
alert("Столько пенки, серьезно?");
whatHave.cream = thirdIngredients;
}
fourthIngredients = +prompt("Сколько у тебя есть сахара ?", "");
if (fourthIngredients === cofeLatte.sugar || fourthIngredients != null && fourthIngredients != "" && fourthIngredients.length <= 2) {
console.log("Будем варить кофе");
whatHave.sugar = fourthIngredients;
} else {
alert("Сахар вреден для здоровья");
whatHave.sugar = fourthIngredients;
}
if (whatHave.cream == cofeLatte.cream && whatHave.espresso == cofeLatte.espresso && whatHave.milk == cofeLatte.milk && whatHave.sugar == cofeLatte.sugar) {
alert(" у тебя получился отличный кофе");
} else {
if ((whatHave.cream - cofeLatte.cream) >= 1 && (whatHave.espresso - cofeLatte.espresso) >= 1 && (whatHave.milk - cofeLatte.milk) >= 1 && (whatHave.sugar - cofeLatte.sugar) >= 1) {
alert("Одну порцию кофе ты точно сможешь выпить");
} else {
alert("Я тебе не рекомендую это пить!");
}
}
return whatHave;
}
console.log(getСofe());
console.log(whatHave);