- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
using System.Reflection;
namespace CSharpOneLove
{
unsafe class Program
{
static void Main(string[] args)
{
while (true)
{
var Input = Console.ReadLine();
Console.WriteLine((from Current in new string[]
{
"Понедельник",
"Вторник",
"Среда",
"Четверг",
"Пятница",
"Суббота",
"Воскресенье"
}
select $"Сегодня {Current}").Contains(Input) ? $"Через 7 дней {Input.Split(' ').Last()}" : $"Ты пидор");
}
}
}
}
nihau 08.02.2016 18:39 # +1
d_fomenok 09.02.2016 17:26 # 0
Lokich 09.02.2016 17:49 # +1
nihau 09.02.2016 18:49 # +1
aka String.Format
Her 08.02.2016 20:04 # +1