|
|
вернуться в форумC# Crash test #8 Послано derxyz 17 мар 2009 15:03 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. |
|
|