#include <stdio.h> #include<ctype.h> //这里主要就是大小写字符处理比较一下 int main() { char str[1001]={0}; char word; int count_alph=0; gets(str); scanf("%c",&word); //printf("word is %c\r\n", word); //遍历作比较 for(int i=0; i< strlen(str);i++) { //字符串,数字 if(toupper(str[i]) == toup...