str ="1233455";

char ch= str.charAt(2);

if (ch > 10)
return false;
else
return true;


반환값이 계속 false로 나오는데요. 대체 이유가 뭔가요? 하...