代码怎么写?怎么判断数字和字母和其他字符?代码怎么记才能写的快?
int c=str[i]; if ('0'<=c && c<='9') { } else if (('A'<=c && c<='Z') ||('a'<=c && c <='z')) { } else { }