I constantly got errors when submission : The first half of the bytes in the first file must be written to the second file. - When there is an odd number of bytes in the first file, your program writes the smaller half of the bytes. It should write the larger half. The second half of the bytes in the first file must be written to the third file. - When there is an odd number of bytes in the first file, your program writes the larger half to the third file. It should write the smaller half. However at line 31 - 36, I especially process the halfCount calculation based on count is odd or even, which explicitly request that when count % 2 == 1, halfCount = count/2 + 1, to get larger half part. Why I still got errors?