Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int degrees = int.Parse(Console.ReadLine());
- string time = Console.ReadLine();
- string Outfit = "";
- string Shoes = "";
- if (degrees >= 10 && degrees <= 18)
- {
- if (time == "Morning")
- {
- Outfit = "Sweatshirt";
- Shoes = "Sneakers";
- }
- else if (time == "Afternoon")
- {
- Outfit = "Shirt";
- Shoes = "Moccasins";
- }
- else if (time == "Evening")
- {
- Outfit = "Shirt";
- Shoes = "Moccasins";
- }
- }
- else if (degrees > 18 && degrees <= 24)
- if (time == "Morning")
- {
- Outfit = "Shirt";
- Shoes = "Moccasins";
- }
- else if (time == "Afternoon")
- {
- Outfit = "T-Shirt";
- Shoes = "Sandals";
- }
- else if (time == "Evening")
- {
- Outfit = "Shirt";
- Shoes = "Moccasins";
- }
- else if (degrees >= 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.WriteLine($"It's {degrees} degrees, get your {Outfit} and {Shoes}.");
- //Не е решена
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement