static void Main(string[] args) { Confer t = new Confer(); Invol t1 = new Invol(); Scientist t2 = new Scientist(); int k = 0; Console.Write("Введите количество конференций: "); int n = int.Parse(Console.ReadLine()); while (k < n) { Confer.Con(); Console.Write("Введите количество участников: "); int n1 = int.Parse(Console.ReadLine()); int k1 = 0; while (k1 < n1) { Invol.inv(); Scientist.scien(); k1++; } k++; } Console.ReadKey(); }
static public void Con() { DateTime date = new DateTime(); Console.WriteLine(" "); Console.Write("Введите название конференции: "); string title = Console.ReadLine(); Console.Write("Введите место проведения: "); string mest = Console.ReadLine(); Console.WriteLine("Введите дату проведения (DD.MM.YYYY): "); int day = int.Parse(Console.ReadLine()); int month = int.Parse(Console.ReadLine()); int year = int.Parse(Console.ReadLine()); date = new DateTime(year, month, day); string dateString = String.Format("{0:dd/MM/yyyy}", date); Confer.output(title, mest, dateString); }