|
|
back to boardC# Crash test #8 Posted by derxyz 17 Mar 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. |
|
|