Функционални
Използваме бисквитки и подобни технологии, за да предоставим нашите услуги. Използваме „сесийни“ бисквитки, за да Ви идентифицираме временно. Те се пазят само по време на активната употреба на услугите ни. След излизане от приложението, затваряне на браузъра или мобилното устройство, данните се трият.
Използваме бисквитки, за да предоставим опцията „Запомни Ме“, която Ви позволява да използвате нашите услуги без да предоставяте потребителско име и парола. Допълнително е възможно да използваме бисквитки за да съхраняваме различни малки настройки, като избор на езика, позиции на менюта и персонализирано съдържание.
Използваме бисквитки и за измерване на маркетинговите ни усилия.
Благодаря за попраката! Следващият път ще внимавам повече.
Няма смисъл от толкова Console.WriteLine ....
Само на 1вия if слагаш :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SummerOutfit
{
class Program
{
static void Main(string[] args)
{
double degrees = double.Parse(Console.ReadLine());
string weather = Console.ReadLine();
string Outfit = "";
string Shoes= "";
if (weather == "Morning")
{
if (degrees >= 10 && degrees <= 18)
{
Outfit = "Sweatshirt";
Shoes = "Sneakers";
//Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
else if (degrees > 18 && degrees <= 24)
{
Outfit = "Shirt";
Shoes = "Moccasins";
//Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
else if (degrees >= 25)
{
Outfit = "T-Shirt";
Shoes = "Sandals";
//Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
}
if (weather== "Afternoon")
{
if (degrees >= 10 && degrees <= 18)
{
Outfit = "Shirt";
Shoes = "Moccasins";
//Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
else if (degrees > 18 && degrees <= 24)
{
Outfit = "T-Shirt";
Shoes = "Sandals";
//Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
else if (degrees >= 25)
{
Outfit = "Swim Suit";
Shoes = "Barefoot";
//Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
}
if (weather == "Evening")
{
if (degrees >= 10 && degrees <= 18)
{
Outfit = "Shirt";
Shoes = "Moccasins";
//Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
else if (degrees > 18 && degrees <= 24)
{
Outfit = "Shirt";
Shoes = "Moccasins";
//Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
else if (degrees >= 25)
{
Outfit = "Shirt";
Shoes = "Moccasins";
//Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
}
Console.WriteLine("It's {0} degrees, get your {1} and {2}.", degrees, Outfit, Shoes);
}
}
}
И аз опитах само с един ред Console.Writeline ,но не ми се получаваше :)
Иначе е по-малко писане.