Показать сообщение отдельно
Яфик
140dB
Аватар для Яфик
Сообщения: 1,290
Регистрация: 12.05.2008
Откуда: 64.Энгельс
Старый пост, нажмите что бы добавить к себе блог 8 марта 2013, 13:20
ВКонтакте
  #2756 (ПС)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int n = Console.Read();
var list = new List<int>();
for(int i = 0; i < n; i++){
list.Add(Console.Read());
}
Console.WriteLine(list.Max());
}
}
}

offline
Ответить с цитированием