You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static char toUpperAscii(char c) { if (isUppercaseAlpha(c)) { //127 c -= (char) 0x20; } return c; } if (isUppercaseAlpha(c)) 应为if (isLowercaseAlpha(c))
The text was updated successfully, but these errors were encountered:
public static char toUpperAscii(char c) { if (isUppercaseAlpha(c)) { //127 c -= (char) 0x20; } return c; }
if (isUppercaseAlpha(c))
应为if (isLowercaseAlpha(c))
The text was updated successfully, but these errors were encountered: