|
|
вернуться в форумПоказать все сообщения Спрятать все сообщенияCrash, because in Input numbers t1, t2, t3 separeted more then one space. So, I replaced string[] ss = Console.ReadLine().Split(' '); to string[] ss = Console.ReadLine().Split(new char[]{' '},StringSplitOptions.RemoveEmptyEntries); and got AC. |
|
|