|
|
back to boardTest 8 What I corrected in my program to pass test #8 was the following: characters in the strings have ascii codes in [33, 255]. If you use something like c >= 33, a character with ascii code 200 will evaluate negative and the inequality will be false. Re: Test 8 You are right, Ciprian, thanks. On the other hand... (int)c disappointed me. :) |
|
|