Дата активности | Консольный раздел | Прогресс | ||
---|---|---|---|---|
2018-12-19 | solo | YESOLO on the Keyboard | % | |
2018-12-13 | task1 | Целые числа | 15 % | |
2018-12-11 | task1 | Семантика | 100 % | |
2018-11-05 | solo | C# набор | 6 % | |
Итого: | 30 % |
static void Main(string[] args)
{
Int32.TryParse(Console.ReadLine(), out int res1);
int res2 = Convert.ToInt32(Console.ReadLine());
int res3 = Int32.Parse(Console.ReadLine());
res1++; res2++; res3++;
Console.WriteLine($"{res1} {res2} {res3}");
Console.ReadKey();
}