02. Summer Outfit
Здравейте, някой може ли да ми заже защо judge ми дава 90/100. :))
https://pastebin.com/AULwCFFh
Здравейте, някой може ли да ми заже защо judge ми дава 90/100. :))
https://pastebin.com/AULwCFFh
When only 10% are missing, always either some spelling mistake or validation sign error.
:-)
else if (degrees >= 25)
{
switch (timeOfDay)
{
case "Morning":
outfit = "T-Shirt";
//outfit = "T-shirt"; => T-Shirt !! ERROR
shoes = "Sandals";
break;
case "Afternoon":
outfit = "Swim Suit";
shoes = "Barefoot";
break;
case "Evening":
outfit = "Shirt";
shoes = "Moccasins";
break;
default:
//Console.WriteLine();
//Environment.Exit(0);
break;
}
}
oh, thank youu :))