03.Summer Outfit Nested Conditional Statement
Здравейте,може ли някой да погледне кода и да ми каже къде точно греша,защото judge ми връща 90/100 и се балтавя цял следобяд.
Кода е тук https://pastebin.com/9BtcXUc
Здравейте,може ли някой да погледне кода и да ми каже къде точно греша,защото judge ми връща 90/100 и се балтавя цял следобяд.
Кода е тук https://pastebin.com/9BtcXUc
Здравей, аз получих 100/100 от Judge с този код:
function Summer(input) {
let degree = Number(input.shift());
let time = input.shift();
let outfit;
let shoes;
if (degree >= 10 && degree <= 18) {
if (time == "Morning") {
outfit = "Sweatshirt";
shoes = "Sneakers";
} else if (time == "Afternoon" || time == "Evening") {
outfit = "Shirt";
shoes = "Moccasins";
}
} else if (degree >= 18 && degree <= 24) {
if (time == "Morning" || time == "Evening") {
outfit = "Shirt";
shoes = "Moccasins";
} else if (time == "Afternoon") {
outfit = "T-Shirt";
shoes = "Sandals";
}
} else if (degree >= 25) {
if (time == "Morning") {
outfit = "T-Shirt";
shoes = "Sandals";
} else if (time == "Afternoon") {
outfit = "Swim Suit";
shoes = "Barefoot";
} else if (time == "Evening") {
outfit = "Shirt";
shoes = "Moccasins";
}
}
console.log(`It's ${degree} degrees, get your ${outfit} and ${shoes}.`);
}